HtmlRenderer- ability to customize element rendering? (javascript)

I’ve been meaning to make the renderer more customizable by splitting out renderers for individual elements and allowing them to be modified individually. Here’s an issue for this: https://github.com/jgm/commonmark.js/issues/6

At this point you have two options:

  1. Modify the HTML renderer (lib/html.js). Search for case 'Link' and it should be pretty obvious what to do.

  2. Traverse the AST looking for links, and replace these with raw html elements. In practice this is ugly, especially since you’d have to do your own escaping, etc.