Tagged Questions
3
votes
1answer
287 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
3answers
541 views
Render wikitext with Python
I need to render wikitext (pulled from the database of a mediawiki of it's relevant) and display in some other format (ultimately to be rendered as a PDF, but basically any other format will do).
I ...