EN
Markdown - how to create space between two lines?
1
answers
0
points
How can I add spaces between two lines in markdown?
I need something like this:
# Header 1
Some description...
\n\n - some space here (blank line or two)
# Header 2
Some description...
1 answer
0
points
You can add <br/> in the source if your Markdown compiler supports HTML.
Another option is to use (non-breaking space).
References
0 comments
Add comment