从 MySQL 到 HTML 服务器站点的 WMD Markdown 不显示文本区域
我将 Markdown 代码存储在 MySQL 中,我担心如何将其转换回 HTML,而不通过 WMD 控件传输并使用大量数据传输。
I store Markdown code in MySQL, and I’m worried about how to convert it back to HTML without transferring it through the WMD control and using massive data transfer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为存在一个误解——WMD 控件在客户端 Web 浏览器上使用 JavaScript 将 Markdown 转换为 HTML。
但 Markdown 文本不再在客户端上——它在你的服务器上,在你的 MySQL 数据库中。因此,您需要一个在您的服务器上运行的 Markdown 库。
尝试检查 Markdown wiki 页面,那里有数十个服务器 Markdown 库。
http://xbeta.org/wiki/show/Markdown
选择一个,将其放在您的服务器,并在您的服务器上运行它,将数据库中的 Markdown 转换为 HTML。
I think there is a misunderstanding -- the WMD control does Markdown to HTML conversion on the client web browser, in JavaScript.
But the Markdown text is no longer on the client -- it is on your server, in your MySQL database. Thus, you need a Markdown library that runs on your server.
Try checking the Markdown wiki page there are dozens of server Markdown libraries there.
http://xbeta.org/wiki/show/Markdown
Pick one, put it on your server, and run it on your server to convert the Markdown in your database to HTML.