如何在 Django 中使用 Markdown?仅通过 2 个标签
我想在 django 中使用 markdown。
我想允许使用粗体和罢工标签。 其他人不转换。
请教我。
I want to use markdown with django.
I want to allow use bold and strike tags.
Others don't convert.
Please teach me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Django 支持 Markdown,但您需要安装 Python 包: http:// /docs.djangoproject.com/en/1.3/ref/contrib/markup/
Django supports Markdown, but you'll need to install the Python package: http://docs.djangoproject.com/en/1.3/ref/contrib/markup/
您可以查看 markdown2 将文本转换为 html。但如果您只想使用粗体和删除线,也许您应该寻找直接使用正则表达式/解析器。
Markdown2 中还可以使用“安全”模式,强制用户仅使用官方 Markdown 语法,而忽略 html。 (使其更安全)
You can take a look at markdown2 for converting text to html. But if you just want to use bold and strike, maybe you should look for using directly regex/parser.
A "secure" mode is also possible in markdown2, forcing the user to use only the official markdown syntax, with ignoring the html. (making it more secure)