Tagged Questions
3
votes
1answer
285 views
How does one parse simple inline markup (i.e. *bold*), in Python?
How does one implement a parser (in Python) for a subset of wikitext that modifies text, namely:
*bold*, /italics/, _underline_
I'm converting it to LaTeX, so the conversion is from:
Hello, ...
0
votes
1answer
364 views
Working example of wikitext-to-HTML in ANTLR 3
I'm trying to flesh out a wikitext-to-HTML translator in ANTLR 3, but I keep getting stuck.
Do you know of a working example that I can inspect? I tried the MediaWiki ANTLR grammar and the Wiki ...