-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
I read a poetry blog. The posts are formatted using break tags within paragraphs, for example:
<p>
This is line 1
<br>
This is line 2
<br>
This is line 3
...
</p>
But in the reader, most break tags get ignored. Here's a screenshot:

This is caused by css in the base-theme that ignores all consecutive break tags after the second. Unfortunately, in the html example above, those break tags are considered consecutive even though there's text between them. According to the commit message, this style bit was added for sites like lemonde.fr, which (5 years ago) put extraneous <br/> tags in their posts.
I can fix this on my own installation by installing the Custom CSS plugin and adding the following CSS:
br + br + br {
display:inline;
}
Is this bit of style override still necessary? I tried loading lemonde.fr feeds and didn't find any extraneous <br/> tags. It's kind of a custom hack for a particular poorly-formatted feed, and causes a bug when breaks are used meaningfully.
