You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As seen here. The word wrapping happens when the comment is posted, but the wiki formatting pass is later (during display), so links with long URLs have random <br/>s inserted in them.
The text was updated successfully, but these errors were encountered:
IMO, the real bug is hard wrapping the text at post time. That's a 100% display decision and we can do it HTML/CSS on the comment pages. This would be done by:
Add a class="pinka" attribute to the <p> tags that contain comments.
Add a style rule p.pinka { width: 75ch; word-wrap: break-word } to the page.
As seen here. The word wrapping happens when the comment is posted, but the wiki formatting pass is later (during display), so links with long URLs have random
<br/>
s inserted in them.The text was updated successfully, but these errors were encountered: