Feature request: single line breaks
Feature request: single line breaks
Jerboa currently ignores single line breaks. I think single line breaks should be implemented as the only other alternative is double line breaks which are not always appropriate.
This is not a missing feature in Jerboa, it's a design choice in the Markdown syntax. It's done so that one can break up long lines in the
.md
file without affecting the rendered page. Markdown is a standard, and Jerboa uses an existing tool to format posts. In order to make this work for Jerboa the devs would have to break compatibility with Markdown and create their own rendering tool. They're most likely not going to do it, and I don't think they should.That's not a problem, though, because you can already create single line breaks in Jerboa, using standard Markdown. All you have to do is add two spaces at the end of your first line, where you want your line break to be. So, if I write down:
this gets rendered to:
This is a line
This is another line
There are other ways to create line breaks in Markdown:
<br/>
tag\
but they're not supported by all renderers. For example: the
<br/>
tag works in Jerboa, but not in the web UI. Double space works for me in both.This is
A test
Cool!
Thank you for the explanation. Good to know single line breaks are possible. However, other web services allow the user to use a single line break and it's displayed in the same way. While you give a good technical reason why it is this way, I'm not convinced it's the most user friendly approach.
Which other web services support Markdown formatting and also single line breaks? Reddit, for example, didn't...
Since AFAIK the main reason for this choice in standard Markdown was to make the raw
.md
files more readable, I can see how this isn't necessary in Lemmy. I still see two reasons not to change this though:I feel like this is asking Jerboa to break a standard.
Markdown is a universal standard, it's what makes webpages look like they do, minus the CSS.