To add a new line in Markdown within Jupyter Notebook, you can use the <br>
tag or add two or more spaces at the end of a line followed by a newline character, \n
.
Here is an example using the <br>
tag:
53 chars3 lines
And here is an example using two spaces at the end of a line:
51 chars3 lines
Both of these methods will result in the text appearing on separate lines when rendered in the Jupyter Notebook.
gistlibby LogSnag