I want to write a parser and converter of haml-like languages, to parse them, and convert them into html content.
I found people usually use regular-expression to do this, but we have to write a lot of difficult regular expressions, which is not easy. Is there any tools or libraries to do it? I hope it in java and easy to use.
And, is there any articles about how to write such a parser? Thanks in advance!