Hi I'm looking to make a pseudo Markdown kind of language and a parser to parse it into xhtml.
I've never written a compiler... I've taken brief looks at ANTLR and am wondering if ANTLR can handle parsing things with meaningful whitespace?
So say I have something like this:
some text
some other text
# bullet point
# nested bullet point
Depending on context and number of prefixing spaces, those lines would mean different things.
What is a good tool to use to write a parser for this?
Thanks, Alex