如何保留摘要的换行

Hi! I’m using this theme component for a poetry community and I would like that the excerpts do not escape new lines (so verses are still in separated lines, even in the excerpt).

I assume I must create some kind of simple (?) plugin to implement this functionality. I have been checking the Discourse code but I didn’t find where should I look in order to change that.

I would be really grateful if you could give some hint :slight_smile: .

Thanks!

1 个赞

您可以使用以下 CSS 来完成此操作:

.topic-list .topic-excerpt {
    white-space: pre-line;
}

这最初是在这里描述的:How can I keep post views on lists - #5 by Don


编辑:
:information_source: 由于多次有人询问保留摘录中的换行符,因此我已将其添加为官方主题 主题列表摘录 中的提示/技巧。

2 个赞

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.