asciidoctor/codemirror-asciidoc

Add an "highlightFormatting" option

Opened this issue · 1 comments

The markdown mode has an option to highlight formatting.

For example, instead of parsing hello **world** as ["hello ", "**world**"], it'll parse it as ["hello ", "**", "world", "**"].

nerk commented

🎅 🎄 Since parsing is almost completely done with regular expressions, I fear we would basically need to rewrite most of this to support such a feature. Correct me if I'm wrong...