如何在django中使用换行符从数据库输出段落

时间:2016-02-10 07:59:58

标签: django django-templates space paragraph

例如,如果文字是

This is the text

This is on a new line with a space in between

如果我使用{{text | linebreaks}},我得到的是

This is the text
This is on a new line with a space in between

我希望在原始文本之间插入空行。有没有办法实现这个目标?

2 个答案:

答案 0 :(得分:2)

linebreaks使用<p>标记转换新行,这可能不会保留空行,或者由于css样式而无法看到它。 您可以尝试linkebrksbr使用<br/>作为新行。

希望这有帮助

答案 1 :(得分:1)

使用linebreaksbr而不是linebreaks:

{{ text|linebreaksbr }}