Markdown Heading Formats

Using = and - for Level 1 and Level 2 Headings

The syntax for using = and - is as follows:

I am showing a Level 1 Heading
=============================

I am showing a Level 2 Heading
-----------------------------
    

The display effect is shown in the image below:

Markdown Heading Formats0

Using # for Headings

Using # can represent headings from level 1 to level 6. Level 1 heading corresponds to one #, level 2 heading corresponds to two ##, and so on.

Note: Standard syntax generally follows a space after # before writing the text, though some platforms might not require a space.

# Level 1 Heading
## Level 2 Heading
### Level 3 Heading
#### Level 4 Heading
##### Level 5 Heading
###### Level 6 Heading
    

The display effect is shown in the image below:

Markdown Heading Formats0