All-in-One Markdown Editing Cheatsheet! Tested on Jupyter but should work with any Markdown Editor :)

Written By Varii

Like this post? Follow me for latest news in the Industry 4.0 life!

Varii


Prerequisites: Have Jupyter Notebooks or a Markdown Editor



Insert a Heading

# Heading Level 1
## Heading Level 2
### Heading Level 3

Insert Link

<a href = "www.google.com"> Google </a>

Adding Images

from IPython.display import Image
from IPython.core.display import HTML
image(url="<http://image.jpg>",width=100,height=100)
![title](filedir/image.png)

Add Code

Insert your code between 2 backquotes (`)

`this is code`

Add a Page Divider