maddy
maddy copied to clipboard
C++ Markdown to HTML header-only parser library
## 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...
## Minimal Code Example ``` static std::regex re("^(?:`){3}$"); ``` ## Conditions . | . --------------------- | ------------------ **Operating System:** | Win10 **Compiler:** | VS2019 **Compiler flags:** | C++14 **maddy version:**...
Can you add latex support? inline formula: `$...$` display formula: `$$...$$` Don't escape the formula.
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...
## 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...
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 ```  ``` to html5 ``` ``` ## Conditions If in absolute path or relative path, there exists such an image, generate its data URI...
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++...
### 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...