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:
-
Modify the HTML renderer (
lib/html.js
). Search forcase 'Link'
and it should be pretty obvious what to do. -
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.