Django 模板:自动换行和缩进块文本

发布于 2024-08-14 16:49:29 字数 161 浏览 2 评论 0原文

我有点强迫自己拥有干净、可读且完美缩进的 HTML。使用 Django 的模板引擎,我几乎已经能够实现这一目标,除了块文本,或者更确切地说,TinyMCE 通过管理面板生成的 HTML 之外。我能得到的最接近的是使用自动换行过滤器;但是,此标记不接受任何参数来向新行添加缩进。还有其他方法可以实现这一目标吗?

I'm a bit compulsive about having clean, readable and perfectly indented HTML. With Django’s template engine I almost have been able to achieve this with the exception of block text, or rather HTML generated by TinyMCE through the admin panel. The closest I could get is using the wordwrap filter; however this tag does not take any arguments to add an indentation to the new line. Is there any other way to achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一个人练习一个人 2024-08-21 16:49:29

我认为您唯一的选择是创建您自己的过滤器

Django 的 django.template.defaultfilters.wordwrap 使用 django.utils.text.wrap 方法来换行文本。您可以查看它并以您想要的任何方式修改输出。

但要让 HTML 的可读性稍微好一些,看起来需要做很多工作。有时已经足够好了,就是...

I think your only option would be to create your own filter.

Django's django.template.defaultfilters.wordwrap uses the django.utils.text.wrap method to wrap text. You could look at that and modify the output in any way you want.

But it looks like a lot of work for having slightly more readable HTML. Sometimes good enough, is...

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