适用于 Google App Engine 的文本到 HTML 转换器
我需要一个将纯文本转换为 HTML 的脚本(例如像 reddit 评论系统中的脚本)。是的,有很多这样的工具,但我需要一个可以与 Google App Engine(和 Python)一起使用的工具。
如果脚本能够以两种方式工作那就太好了:对文本进行编码并从 HTML 解码回来(用于编辑保存的文本)。
提前致谢!
I need a script that converts plain text into HTML (eg like the one in reddit comments system). There are plenty of those out there, yeah, but I need one that could work with Google App Engine (and Python).
It could be great if the script could work both ways: for encoding the text and decoding it back from HTML (for editing saved texts).
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有多种“人性化”标记语言,并且没有任何特殊原因导致它们不能在 App Engine 中运行。例如,我的博客引擎 bloggart 通过其标准 Python 库支持几个 。
您不应该尝试将 HTML 转换回标记,而应该存储用户输入的原始的、未损坏的标记,并允许他们对其进行编辑。
There's multiple 'humane' markup languages, and no particular reason for any of them to not work in App Engine. My blog engine, bloggart, for example, supports several via their standard Python libraries.
Instead of attempting to convert HTML back to markup, you should be storing the original, un-mangled markup the user input, and allowing them to edit that, instead.