如何在我的网站上将 WMD markdown 语法转换为 HTML?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Django 附带的 标记 附加组件。 这就是您正在寻找的。
如果您仍然遇到困难,还可以查看这篇文章了解更多详细信息。
Check out the markup add-on which comes with Django. That is what you are looking for.
Also check out this article for some more details if you're still stuck.