sindresorhus / github-markdown-css

The minimal amount of CSS to replicate the GitHub Markdown style
https://sindresorhus.com/github-markdown-css
MIT License
7.99k stars 2.1k forks source link

Missing linebreak options #69

Closed GustavJaner closed 4 years ago

GustavJaner commented 4 years ago

Github markdown allows the use of <br> and backslash \ to break a line. Normal use of
tag in the .md file does not result in a line break, but simply renders the literal
as part of the text. Same with the backslash .

So far the only option I've found to produce a linebreak is the double space " ". It might not be the best option for writing/structuring your .md files clearly, since it's not as visible as the other options.

https://gist.github.com/shaunlebron/746476e6e7a4d698b373

sindresorhus commented 4 years ago

I don't think this is related to the CSS, but rather the Markdown renderer you're using.

GustavJaner commented 4 years ago

True haha. Thanks, I solved it