org.commonmark.parser.DelimiterProcessor only supports inline elements with symmetric delimiters, like * and _ (or ~~ for strikethrough). I'd like to write an extension for inline elements with asymmetric delimiters (in my case, {}), but this is not possible with the current design.
I have considered using a org.commonmark.parser.PostProcessor, but I'd like my extension to be parsed with the same precedence as other inline elements.