Python module for wiki markup - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T07:37:53Zhttp://stackoverflow.com/feeds/question/154592http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/154592/python-module-for-wiki-markup9Python module for wiki markupBrian M. Hunt2008-09-30T19:32:59Z2008-09-30T23:06:50Z
<p>Is there a Python module for converting wiki markup to other languages (e.g. HTML)?</p>
<p>A similar question was asked here, <a href="http://stackoverflow.com/questions/45991/whats-the-easiest-way-to-convert-wiki-markup-to-html">What's the easiest way to convert wiki markup to html</a>, but no Python modules are mentioned.</p>
<p>Just curious. :) Cheers.</p>
http://stackoverflow.com/questions/154592/python-module-for-wiki-markup/154681#154681-2Answer by Rich B for Python module for wiki markupRich B2008-09-30T19:52:52Z2008-09-30T19:52:52Z<p>I am not sure of your exact application, but there is a great list <a href="http://pypi.python.org/pypi?:action=search&term=wiki&submit=search" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/154592/python-module-for-wiki-markup/154790#1547905Answer by Swaroop C H for Python module for wiki markupSwaroop C H2008-09-30T20:11:43Z2008-09-30T20:11:43Z<p><a href="http://code.pediapress.com/wiki/wiki/Examples" rel="nofollow">mwlib</a> provides ways of converting MediaWiki formatted text into HTML, PDF, DocBook and OpenOffice formats.</p>
<p><br /></p>
<p><img src="http://code.pediapress.com/wiki/raw-attachment/wiki/Examples/birdview_mw-render_v0.1.png" alt="Image of how it works" /></p>
http://stackoverflow.com/questions/154592/python-module-for-wiki-markup/154972#1549722Answer by zuber for Python module for wiki markupzuber2008-09-30T20:38:04Z2008-09-30T23:06:51Z<p>You should look at a good parser for <a href="http://wikicreole.org/" rel="nofollow">Creole</a> syntax: <a href="http://wiki.sheep.art.pl/Wiki%20Creole%20Parser%20in%20Python" rel="nofollow">creole.py</a>. It can convert Creole (which is "a common wiki markup language to be used across different wikis") to HTML.</p>
http://stackoverflow.com/questions/154592/python-module-for-wiki-markup/155184#1551843Answer by tghw for Python module for wiki markuptghw2008-09-30T21:31:36Z2008-09-30T21:31:36Z<p>Django uses the following libraries for markup:</p>
<ul>
<li><a href="http://www.freewisdom.org/projects/python-markdown/" rel="nofollow">Markdown</a></li>
<li><a href="http://pypi.python.org/pypi/textile" rel="nofollow">Textile</a></li>
<li><a href="http://docutils.sourceforge.net/rst.html" rel="nofollow">reStructuredText</a></li>
</ul>
<p>You can see <a href="http://code.djangoproject.com/browser/django/trunk/django/contrib/markup/templatetags/markup.py" rel="nofollow">how they're used in Django</a>.</p>