Convert LaTeX to MediaWiki syntax

Stefano Borini picture Stefano Borini · Jan 8, 2010 · Viewed 9.8k times · Source

I need to convert LaTeX into MediaWiki syntax. The formulas should stay the same, but I need to transform, for example \chapter{something} into = something =.

Although this can be obtained with a bit of sed, things get a little dirty with the itemize environment, so I was wondering if a better solution can be produced.

Anything that can be useful for this task?

Answer

sastanin picture sastanin · Jan 8, 2010

Pandoc should be able to do it:

$ pandoc -f latex -t mediawiki << END
> \documentclass{paper}
> \begin{document}
> \section{Heading}
> 
> Hello
> 
> \subsection{Sub-heading}
> 
> \textbf{World}!
> \end{document}
> END
== Heading ==

Hello

=== Sub-heading ===

'''World'''!