How to write one new line in Bitbucket markdown?
Is it possible to write a new line (NOT a paragraph) in the Bitbucket markdown?
Two new lines in the source creates one new paragraph. I only want a new line. And I don't want to use a code block.
Solution 1:
It's possible, as addressed in Issue #7396:
When you do want to insert a
<br />
break tag using Markdown, you end a line with two or more spaces, then type return or Enter.
Solution 2:
It's now possible to add a forced line break
with two blank spaces at the end of the line:
line1→→
line2
will be formatted as:
line1
line2