Markdown Library (Md)
Markdown library.
Md.html(md: str) -> str
const md = '# Title\nList.\n- one\n- two';
const html = Md.html(md);
assert_eq(html, '<h1>Title</h1>\n<p>List.</p>\n<ul>\n<li>one</li>\n<li>two</li>\n</ul>');Md.json(md: str) -> str
const md = '# Title\nList.\n- one\n- two';
const json = Md.json(md); // lots of info from the markdown parserLast updated