Python module for wiki markup - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T07:37:53Z http://stackoverflow.com/feeds/question/154592 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/154592/python-module-for-wiki-markup 9 Python module for wiki markup Brian M. Hunt 2008-09-30T19:32:59Z 2008-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 -2 Answer by Rich B for Python module for wiki markup Rich B 2008-09-30T19:52:52Z 2008-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&amp;term=wiki&amp;submit=search" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/154592/python-module-for-wiki-markup/154790#154790 5 Answer by Swaroop C H for Python module for wiki markup Swaroop C H 2008-09-30T20:11:43Z 2008-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#154972 2 Answer by zuber for Python module for wiki markup zuber 2008-09-30T20:38:04Z 2008-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#155184 3 Answer by tghw for Python module for wiki markup tghw 2008-09-30T21:31:36Z 2008-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>