100% found this document useful (1 vote)
337 views3 pages

Jupyter Notebook Markdown

This document provides a cheatsheet for formatting text and elements in Jupyter Notebook using Markdown. It lists Markdown syntax for formatting text styles like bold, italics, and code; inserting elements like images, links, blockquotes, lists, tables, and videos; and highlighting syntax. Navigation within a Jupyter notebook using Markdown identifiers is also demonstrated.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
337 views3 pages

Jupyter Notebook Markdown

This document provides a cheatsheet for formatting text and elements in Jupyter Notebook using Markdown. It lists Markdown syntax for formatting text styles like bold, italics, and code; inserting elements like images, links, blockquotes, lists, tables, and videos; and highlighting syntax. Navigation within a Jupyter notebook using Markdown identifiers is also demonstrated.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Jupyter Notebook Markdown Cheatsheet

Particulars Input Output

Headers # Header 1
## Header 2
### Header 3
#### Header 4

Horizontal Line ***


---
___

Text color <span style='color:Blue'> Blue is my


favorite color. </span>

Text background ## <span style='background :yellow'


> Background color is yellow
</span>

Text font-family ## <span


style='font-family:Georgia'> It is
Georgia font.
## <span
style='font-family:Helvetica'> It is
Helvetica font.

Text Emphasis *Italic* or _Italic_


**Bold**
***Bold and Italic***
~~Scratch Me.~~

Text in code style `print('Hello World')`

Creator: ​Dayal Chand Aichara


Jupyter Notebook Markdown Cheatsheet
Particular Input Output

Blockquotes > 1 Blockquotes


>> 2 Blockquotes
>>> 3 Blockquotes
>>>> 4 Blockquotes
>>>>>>>> 8 Blockquotes

List 1. Main list <br>


a. Sub-list <br>
b. sub list
2. Main list
* main list

Table How | To | Make | a table|


| :---: | :---: | :---: | :---: |
| in | <span style=
'background:yellow'> Jupyter
</span>| <span style=
'background:yellow'> Notebook
</span>| <span style=
'background:yellow'> Markdown
</span> |
| It | is | really| cool |

Image ![ ](c0ban_logo.png)

Link # [My LinkedIn link


](​www.linkedin.com/in/dcaichara​)

Creator: ​Dayal Chand Aichara


Jupyter Notebook Markdown Cheatsheet
Particular Input Output

YouTube Video [![YouTube Video


Link](​http://img.youtube.com/vi/jqSu
aRpCnro/0.jpg)](http://www.youtube
.com/watch?v=jqSuaRpCnro​)

Image Link [![photo Output will be input image. If you click


link](DCA.jpg)](​https://www.linkedin. on image it will redirect you to link
com/in/d​caichara) addresses.​.

Syntax ```python
highlighting A = "Python syntax highlighting"
print(A)
for i in range(0,10):
print(A)
```

Navigation within <a id =6> </a> <br> Start of


Jupyter Notebook Notebook
[Start of NoteBook](#6)

Click on the blue text line to go where


black text line starts.

Creator: ​Dayal Chand Aichara

You might also like