Open
Description
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:
std::stringstream markdownInput("some text...");
m_markdownParser->Parse(markdownInput);
Qt code:
QString markdownInput("some text...");
QTextDocument textDoc;
textDoc.setMarkdown(markdownInput);
textDoc.toHtml();
EDIT: By mistake I set it as a feature request.