insert br tags in feeds

FreshRSS performs input sanitation and throws away all style attributes.
Instead of relying on them for linebreaks, insert br tags.
This commit is contained in:
Jakob Wenzel 2021-02-15 20:22:39 +01:00 committed by Cadence Ember
parent 33f85d83da
commit a177e6cb3f
No known key found for this signature in database
GPG Key ID: BC1C2C61CF521B17
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,9 @@ const TimelineChild = require("./TimelineChild")
require("../testimports")(collectors, TimelineChild, TimelineBaseMethods)
const rssDescriptionTemplate = compile(`
p(style='white-space: pre-line')= caption
each line in caption.split("\\n")
= line
br
each child in children
!= child.getFeedItem()
`)