My question is simple: Has anyone yet created an Antlr4 grammar that parses CommonMark?
If so where can I find it?
Niels
My question is simple: Has anyone yet created an Antlr4 grammar that parses CommonMark?
If so where can I find it?
Niels
My memory of parsers is a bit rusty, but ANTLR is a LL(*) parser, which can only parse (a subset of) context-free grammars. And markdown is not context-free.
I see. So creating a parser with a tool like Antlr is simply not possible. Thanks for clarifying this.
Niels