[Markdown] TIL: You can force line break in Markdown without creating a new paragraph
Adding a new empty line between two lines of text in Markdown creates two different paragraphs. For example:
This is paragraph 1.
This is paragraph 2.
Output:
<p>This is paragraph 1. </p>
<p>This is paragraph 2.</p>
However, there are times when y...
Rahul Kumar Borah
Software Developer
Thanks for sharing this. I think hashnode guide should include this.