ali-rantakari / peg-markdown-highlight

C library for Markdown syntax highlighting, using a recursive-descent parser.
Other
181 stars 36 forks source link

Support for code block #15

Open tamlok opened 8 years ago

tamlok commented 8 years ago

Hi, thanks for your great work! Does peg-markdown-highlight support the code block? For example:

#include <iostream>

int main()
{
    int a, b;
}

It seems not working well (mis-interpret #include <iostream> as a title). Thanks very much!