在模板中显示文本?

发布于 2024-11-30 13:04:45 字数 260 浏览 2 评论 0原文

我的模型中有一个包含 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 技术交流群。

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

发布评论

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

评论(1

帅气称霸 2024-12-07 13:04:45

Plone 使用 TAL 作为模板引擎,并且可以使用 StructuredText、reStructuredText 和其他富文本格式,在 TAL 之外完成所有对 HTML 的渲染。因此,您可能采用了错误的方法。

也就是说,TAL 有一个可扩展的“表达式”系统,这就是为什么你可以有 path 表达式(默认)或 python 表达式。在包括 plone 在内的 zope 世界中,有一个称为内容提供者的页面组合系统,因此有人实现了 provider tal 表达式。所以也许你可以看看:

<代码>tales.py

configure.zcml< /a>

struct 关键字仍然是你最简单的选择。

<div tal:replace="structure view/getMarkdown">rendered markdown</div> 

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) or python expressions. In the zope world, which includes plone, there's a page composition system called content providers, so someone implemented a provider tal expression. So maybe you can look at that:

tales.py

configure.zcml

The structure keyword is still your easiest bet.

<div tal:replace="structure view/getMarkdown">rendered markdown</div> 

But structure is a special case keyword and not an extensible part of page templates.

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