How to use Trac wiki formatting in a Django / Python web application?

I have a Python web application (especially Django). I read some data from the Trac database (where the descriptions use wiki formatting ) and display it as HTML. I reviewed the markdown module, but realized that the formatting and markdown of Wiki Trac is really quite different. Is there a module for Django or a Python package that supports wiki formatting that uses Trac?

Update:

It seems like I was a little hurried with my vote to close - while the other ticket looks similar, my question is more about Wiki formatting in Trac. Thanks petantik for the link!

Similar question: Where can I get a wiki formatting widget for my django application?

+5
source share
2 answers

The links below show a snippet that imports trace markup and creates a django template filter from it

http://www.djangosnippets.org/snippets/1047/

+5
source

I created a plugin for Django-CMS that supports the Wiki Trac syntax, with macros and everything else that you expect from Trac:

https://bitbucket.org/mitar/cmsplugin-markup-tracwiki

0
source

All Articles