Comment conserver les sauts de ligne sur les extraits ?

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 « J'aime »

Cela peut être fait en utilisant ce CSS :

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

Ceci a été décrit à l’origine ici : How can I keep post views on lists - #5 by Don


edit :
:information_source: comme la possibilité de conserver les sauts de ligne dans les extraits a été demandée plusieurs fois, je l’ai ajoutée comme astuce/truc sur le topic officiel.

2 « J'aime »

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