<html lang="en">
<head>
<meta charset="UTF-8">
<title>测试</title>
</head>
<body>
{% for article in articles %}
<b>{{ article.title }}</b>
<p>{{ article.content|linebreaksbr }}</p>
{% endfor %}
</body>
</html>
添加|linebreaksbr
即可实现换行
实现效果如图:
image.png
不添加的效果如图:
image.png
这里的页面效果是跟后台格式一样的:
如图,我在后台增加了一个空格
image.png
实际效果也多了一个空格
image.png