如何在 Django 中使用 Markdown?仅通过 2 个标签

发布于 2024-11-08 14:21:35 字数 75 浏览 0 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゃ人海孤独症 2024-11-15 14:21:35

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/

难理解 2024-11-15 14:21:35

您可以查看 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文