如何在 Django/Python Web 应用程序中使用 Trac wiki 格式?
我有一个 Python Web 应用程序(特别是 Django)。我正在从 Trac 数据库中读取一些数据(其中描述使用 wiki 格式)并且将其显示为 HTML。我考虑过 markdown 模块,但意识到 Trac wiki 格式和 markdown 确实有很大不同。是否有 Django 模块或支持 Trac 使用的 wiki 格式的 Python 包?
更新:
看起来我有点仓促地结束了我的投票——虽然另一张票看起来很相似,但我的问题更多地与 Trac wiki 格式有关。感谢 petantik 提供的链接!
I have a Python web application (Django, specifically). I'm reading in some data from a Trac database (where the descriptions use wiki formatting) and displaying it as HTML. I considered the markdown module, but realised that Trac wiki formatting and markdown are really quite different. Is there a module for Django, or a Python package that supports the wiki formatting that Trac uses?
Update:
Looks like I was a little hasty with my vote to close - while the other ticket looks similar, my question is more to do with Trac wiki formatting. Thanks to petantik for the link!
Similar question: Where can i get a wiki formatting widget for my django application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面的链接显示了一个导入 trac 标记并从中创建 django 模板过滤器的片段
http://www.djangosnippets.com djangosnippets.org/snippets/1047/
The below links shows a snippet which imports trac markup and makes a django template filter from it
http://www.djangosnippets.org/snippets/1047/
我为 Django-CMS 制作了一个插件,它支持 Trac wiki 语法、宏以及您期望从 Trac 获得的所有其他内容:
https://bitbucket.org/mitar/cmsplugin-markup-tracwiki
I have made a plugin for Django-CMS which support Trac wiki syntax, with macros and everything else you expect from Trac:
https://bitbucket.org/mitar/cmsplugin-markup-tracwiki