-
-
Notifications
You must be signed in to change notification settings - Fork 6
Description
It would be nice to have HTML passthrough as an option at least, and here's why:
I'm currently looking around for markdown libraries, especially very simple ones with no complicated build systems or dependencies for better portability to more obscure targets like Android and others without tons of manual adjustment and build system headaches. However, I only care about HTML final output (so passthrough makes sense there in principle), and I care about being able to extend the parser. The easiest way to extend however is to preparse the original markdown with my own extension handler, replace only the extended stuff to inline HTML, and then run the regular markdown parser to do everything else. But this only works if HTML is allowed to pass through unaltered.
I understand if that's not possible in the scope of this project, but I just wanted to bring it up in case it was. This seems to be one of the few single file parsers that are 1. still maintained, and also 2. try to stick somewhat to commonmark as a standard.