Tagged Questions

3
votes
2answers
184 views

Parsing wikiText with regex in Java

Given a wikiText string such as: {{ValueDescription |key=highway |value=secondary |image=Image:Meyenburg-L134.jpg |description=A highway linking large towns. |onNode=no ...
0
votes
1answer
90 views

Translating Wikitext (Wiktionary style) into HTML on the client side

I'm trying to parse Wiktionary Wikitext on the client side (with JavaScript). I found Wiky.js, but it has problems with some markups like {{}}, + etc. Do you know any JavaScript library which may help ...
0
votes
0answers
61 views

Wikitext/richtext editor error - FCKeditor

Rather then getting the [Show wiki text editor] button I get this [<tog-riched_disable>] .. Same for the other tabs! Anybody who experienced this issue before or any suggestions??
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 ...
0
votes
3answers
525 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 ...