Closed noties closed 6 years ago
Hey!
Turns out my problem was choosing delimiter processor instead of using a block parser. So, now everything works.
*And removed _
char is not a surprise as inline parser thinks that it found an emphasis node.
Thanks for the library!
👍 yeah adding a custom block parser is the right thing for this!
Hello,
I've been trying to implement a simple LaTeX formula render in my Markwon library and found out that commonmark-java modifies input. So, I wanted to ask if it's possible to not escape input when in some specific block/node?
I'm using
DelimiterProcessor
now.Input:
Output:
What surprises me is removed
_
char, which doesn't sound that dangerous...Anyway, I would really love to get some feedback about this. Can we specify when input should not be processed but kept as-is?
Thanks!