1Jupyter Markdown Notation
2
3# Heading 1
4## Heading 2
5### Heading 3
6#### Heading 4
7##### Heading 5
8###### Heading 6
9
10Normal
11
12*Italics* or _Italics_
13
14**Bold** or __Bold__
15
16**_Bold and Italics_**
17
18~~Strike Through~~
19
20* Bullet Point or
21- Bullet Point or
22+ Bullet Point
23
241. Numbered
25 1. Sub Number
26
27www.google.com
1How to format Markdown cells in Jupyter notebooks:
2
3Headings
4# for titles
5## for major headings
6### for subheadings
7#### for 4th level subheadings
8
9Emphasis
10Bold text: __string__ or **string**
11Italic text: _string_ or *string*
12
13Mathematical symbols
14$ mathematical symbols $
15
16Monospace font
17`string`
18
19Line breaks
20<br>
21
22Indenting
23> Text that will be indented when the Markdown is rendered.
24
25Bullets
26- Bulleted item
27 - Bulleted item
28* Bulleted item
29- Main bullet point
30 - Sub bullet point
31
32Numbered lists
331. Numbered item
341. Numbered item
35 1. Substep
36
37Graphics
38<img src=“url/filename.gif” alt=“Alt text” title=“Title text” />
39
40Geometric shapes
41Use &# followed by the decimal or hex reference number for the shape, for example:
42&#reference_number
43
44Horizontal lines
45***
46
47Internal links
48[Section title](#section-title)
49<a id="section_ID"></a>
50[Section title](#section_ID)
51
52External links
53__[link text](http://url)__