Line Breaks
Line break is when you want the next line to appear below.
There are several ways.
- If you add two spaces it moves to the next line
- If you use a \ it's also possible, but not all applications that support markdown accept this (avoid it).
- The
<br>tag also moves to the next line.
Select the text below to see the blank spaces
Starting a text
continuing
and continuing even more.
Starting a text <br>
continuing <br>
and continuing even more.
This would also be possible although not recommended.
Starting a text \
continuing \
and continuing even more.