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 =
\\chapter{something}
something =
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'''!