What is the best implementation of Markdown for C or C++?
I found these via Google, and would appreciate comments about which ones work well and which ones don't (and which ones I may have missed):
|
What is the best implementation of Markdown for C or C++? I found these via Google, and would appreciate comments about which ones work well and which ones don't (and which ones I may have missed): |
||||
|
|
Why do I know them so much? I'm developing CppCMS, so I need a good markdown to HTML convertor. When I picked one (Discount), it was the only solution. Since then I've needed to replace it due to licensing issues. That said, I still quite like it because it is the fastest Markdown solution. P.S.: If you want C++ wrapper for Discount, take a look on http://cppcms.svn.sourceforge.net/viewvc/cppcms/cms/trunk/cxxmarkdown/, It is not the latest version, but it is already tweaked. EDIT: I have just visited Discount site and I had found that it had added a non-FILE API as well. So now it is real library. EDIT 2: If you find better implementation or write your own under FOSS license, let me know ;) |
|||||
|
|
Googling a little more, i found that the Wikipedia page refers a Markdown Wiki which has several other implementation references in assorted languages and some tests too. Very interesting, i had not read about Markdown before. Thanks. |
|||
|
|
|
I tried to use Cpp-Markdown in a wiki/cms of mine. It isn't really production-ready. It fails in a number of cases, e.g. links in titles, and I just found a case that results in a segfault. :-/ |
||||
|
|