maddy icon indicating copy to clipboard operation
maddy copied to clipboard

C++ Markdown to HTML header-only parser library

Results 29 maddy issues
Sort by recently updated
recently updated
newest added

## Minimal Code Example ```cpp #include #include #include int main(int argc, char* argv[]) { (void)argc; (void)argv; // Parser is not giving expected output std::string bad = "**Some Title**\n" "- List...

feature
v2.0.0

## Minimal Code Example ``` static std::regex re("^(?:`){3}$"); ``` ## Conditions . | . --------------------- | ------------------ **Operating System:** | Win10 **Compiler:** | VS2019 **Compiler flags:** | C++14 **maddy version:**...

bug

Can you add latex support? inline formula: `$...$` display formula: `$$...$$` Don't escape the formula.

feature
v2.0.0

First of all, thanks for this work -- it's very helpful. Currently code blocks are supported with three backticks but the original markdown spec is that 4 spaces or a...

feature
v2.0.0

## Minimal Code Example ``` [Plastic bag code](https://en.wikivoyage.org/wiki/Common_scams#Plastic_bag_code) Plastic bag code ``` ## Conditions . | . --------------------- | ------------------ **Operating System:** | Ubuntu 18.04 **Compiler:** | g++ 7.4.0 **Compiler...

bug
v2.0.0

Hey @progsource, I tried to fix this, and this is working as seen in https://regex101.com/r/a40XyN/1, but in the code it compiles but gives me `std::regex_error` at runtime. I am unable...

## Minimal Code Example ``` ![]( ./images/a.png) ``` to html5 ``` ``` ## Conditions If in absolute path or relative path, there exists such an image, generate its data URI...

feature

This adds fuzzing by way of [ClusterFuzzLite](https://google.github.io/clusterfuzzlite/), which is a GitHub action that will perform a short amount of fuzzing for new PRs. The goal is to use fuzzing to...

Hello! Thanks for this library. I was wondering why for the same text I got such a difference performance: Maddy took 5304 milliseconds Qt took 5 milliseconds Maddy code: ```c++...

question
v2.0.0

### What is the issue? First of all thank you for this great library! I've selected it for conversion of Markdown to HTML for my own CGI site. However, conversion...

question
v2.0.0