如何在我的网站上将 WMD markdown 语法转换为 HTML?

发布于 2024-07-17 11:47:47 字数 190 浏览 10 评论 0原文

我正在使用 django 并在我的网站上实现 WMD,我只是想知道如何将 markdown 语法转换为 HTML 以用于显示目的,是否应该调用某种函数来进行此转换?

处理 Markdown 的最佳方法是什么? 我应该将 Markdown 按原样保存到数据库中,然后在显示时解析它,还是应该保存转换后的 HTML,然后在编辑期间将其转换为标记?

Am using django and am implementing WMD on my site, am just wondering how do i convert the markdown syntax to HTML for display purposes, is there some sort of function i should call to do this conversion?

What is the best way to handle markdown ie. do i save the markdown as is to the database then parse it when displaying it or should i save the converted HTML then convert it to markup during editing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

走过海棠暮 2024-07-24 11:47:47

查看 Django 附带的 标记 附加组件。 这就是您正在寻找的。

要激活这些过滤器,请将“django.contrib.markup”添加到您的 INSTALLED_APPS 设置中。 完成此操作后,在模板中使用 {% load markup %},您就可以访问这些过滤器。 有关更多文档,请阅读 django/contrib/markup/templatetags/markup.py 中的源代码。

如果您仍然遇到困难,还可以查看这篇文章了解更多详细信息。

Check out the markup add-on which comes with Django. That is what you are looking for.

To activate these filters, add 'django.contrib.markup' to your INSTALLED_APPS setting. Once you’ve done that, use {% load markup %} in a template, and you’ll have access to these filters. For more documentation, read the source code in django/contrib/markup/templatetags/markup.py.

Also check out this article for some more details if you're still stuck.

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