How to truncate html without breaking the tags?

瘦欲@ 提交于 2019-12-05 04:32:13

In Django 1.7, there is a specific template filter called truncatechars_html:

Similar to truncatechars, except that it is aware of HTML tags. Any tags that are opened in the string and not closed before the truncation point are closed immediately after the truncation.

Also see truncatewords_html.

For Django<1.7, you can either use truncatewords_html, or make a custom filter based on the one implemented in 1.7 (source), or use this snippet (have not tested it). Also see relevant to the snippet blog post: Safe truncation of HTML.

For Django 1.6 there is truncatewords_html available no need to create a custom filter. https://docs.djangoproject.com/en/1.6/ref/templates/builtins/#truncatewords-html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!