在模板中显示文本?
我的模型中有一个包含 Markdown 文本的文本字段。我需要将文本转换为 html 并将其显示在我的 .pt
模板中。最好的方法是什么?
我意识到我可以向我的模型添加一个方法来转换字段并返回 HTML,然后从我的模板中调用该方法,但是我可以在没有这个额外方法的情况下执行此操作,只需使用我的模板中的 markdown 字段(与 Django 类似) ?
{{ mytext|markdown:"safe" }}
I have a text field in my model that contains markdown text. I need to convert the text to html and show it in my .pt
template. what is the best way to do it?
I realise that I can add a method to my model that converts the field and returns HTML, and then call the method from my template, but can I do it without this extra method, by using only the markdown field in my template similarly to Django's?
{{ mytext|markdown:"safe" }}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Plone 使用 TAL 作为模板引擎,并且可以使用 StructuredText、reStructuredText 和其他富文本格式,在 TAL 之外完成所有对 HTML 的渲染。因此,您可能采用了错误的方法。
也就是说,TAL 有一个可扩展的“表达式”系统,这就是为什么你可以有
path
表达式(默认)或python
表达式。在包括 plone 在内的 zope 世界中,有一个称为内容提供者的页面组合系统,因此有人实现了provider
tal 表达式。所以也许你可以看看:<代码>tales.py
configure.zcml
< /a>struct
关键字仍然是你最简单的选择。但
struct
是一个特殊情况的关键字,而不是页面模板的可扩展部分。Plone, which uses TAL for it's templating engine and can use StructuredText, reStructuredText, and other rich text formats, does all the rendering to HTML outside TAL. So you might be barking up the wrong tree in the approach you're going for.
That said, TAL has a somewhat extensible "expression" system which is why you can have
path
expressions (the default) orpython
expressions. In the zope world, which includes plone, there's a page composition system called content providers, so someone implemented aprovider
tal expression. So maybe you can look at that:tales.py
configure.zcml
The
structure
keyword is still your easiest bet.But
structure
is a special case keyword and not an extensible part of page templates.