wikitext

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, *world*! Let's /go/. to: Hello \textbf{world}! Let's \textit{go}. Though there's nothing specific about it being a conversion to LaTeX (nota...

.Net WikiText to HTML Parser

I know, I know, its sounds silly, but it seems that there are no opensource robust .NET libraries out there for parsing Wikitext to HTML. Anybody know of a stable.robust .net Wikitext to HTML parser (i.e. codeplex projects that are still in beta mode do not count) ...

How to Parse Some Wiki Markup

Hey guys, given a data set in plain text such as the following: ==Events== * [[312]] – [[Constantine the Great]] is said to have received his famous [[Battle of Milvian Bridge#Vision of Constantine|Vision of the Cross]]. * [[710]] – [[Saracen]] invasion of [[Sardinia]]. * [[939]] – [[Edmund I of England|Edmund I]] succ...

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 can definately hack together something that does the job but ultimately I'll be writing it as I go along, and I can see that the overhead of...

Is there any HTML to WikiText translator?

Is there any HTML to WikiText translator? I need to translate tables with hyperlinks and images inside. ...

How to convert XML to something else using xslt stylesheet?

How to convert XML to something else using xslt stylesheet? In C++ C# PHP or ActionScript? For example I have this html2wiki xslt stylesheet I want to send to my programm my XML (in this case HTML file ) and get back a file (in this case Wiki mark up text ) So How to translate one text file into another text file using XSLT styles...