Python module for wiki markup

前端 未结 4 1613
自闭症患者
自闭症患者 2020-12-08 04:24

Is there a Python module for converting wiki markup to other languages (e.g. HTML)?

A similar question was asked here, What\'s

相关标签:
4条回答
  • 2020-12-08 05:06

    mwlib provides ways of converting MediaWiki formatted text into HTML, PDF, DocBook and OpenOffice formats.

    0 讨论(0)
  • 2020-12-08 05:06

    You should look at a good parser for Creole syntax: creole.py. It can convert Creole (which is "a common wiki markup language to be used across different wikis") to HTML.

    0 讨论(0)
  • 2020-12-08 05:25

    with python-creole you can convert html to creole and creole to html... So you can convert other markups to html and then to creole...

    https://code.google.com/p/python-creole/

    0 讨论(0)
  • 2020-12-08 05:28

    Django uses the following libraries for markup:

    • Markdown
    • Textile
    • reStructuredText

    You can see how they're used in Django.

    0 讨论(0)
提交回复
热议问题