Markdown Headers
There are two formats for Markdown headers.
1. Using = and - to Mark Level 1 and Level 2 Headers
The syntax for using = and - is as follows:
I am demonstrating a level 1 header
=================
I am demonstrating a level 2 header
-----------------
The display effect is shown in the image below:
Using the # Symbol
The #
symbol can represent headers from level 1 to level 6, with one #
for level 1, two #
s for level 2, and so on.
# Level 1 Header
## Level 2 Header
### Level 3 Header
#### Level 4 Header
##### Level 5 Header
###### Level 6 Header
The display effect is shown in the image below: