Ask HN: Markdown to HTML
What is the proper way to 'transpile' Markdown to HTML?
I know there are static site generators out there, this has already been done, etc. I'm curious about the best way to do it, and if you can, pointing me to an example.
Thank you so much!
1 comment
[ 4.4 ms ] story [ 13.7 ms ] threadThat pretty much covers Markdown to HTML conversion today - either a standalone utility (markdown.pl, lowdown, commonmark, etc) or a library for your preferred language (kramdown, cmark, etc).
I guess the only other advancement is markdown-savvy editors that render the HTML in realtime as you type.