Django 模板:自动换行和缩进块文本
我有点强迫自己拥有干净、可读且完美缩进的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您唯一的选择是创建您自己的过滤器。
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 thedjango.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...