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:
xxxxxxxxxx
1
# Header 1
2
3
Some description...
4
5
\n\n - some space here (blank line or two)
6
7
# Header 2
8
9
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 commentsShow commentsAdd comment