To create a heading, add 1 ~ 6 # symbols before your heading text.
A first-level heading has 1 # symbol, a second-level heading has 2 # symbols, and so on:
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
You can indicate emphasis with bold, italic, strikethrough, subscript, or superscript text in comment fields and .md files.
| Style | Syntax | Example | Output | 
|---|---|---|---|
| Bold | ** ** | 
This is a **bold** text. | 
This is a bold text. | 
| Italic | * * | 
This is a *italic* text. | 
This is a italic text. | 
| Strikethrough | ~~ ~~ | 
This is ~~not~~ a good idea. | 
This is  | 
| Subscript | <sub> </sub> | 
This is a <sub>subscript</sub> text. | 
This is a subscript text. | 
| Superscript | <sup> </sup> | 
This is a <sup>superscript</sup> text. | 
This is a superscript text. | 
You can quote text with a >.
> To be, or not to be, that is the question
> 
> -- Hamlet
To be, or not to be, that is the question.
-- Hamlet
You can create an inline link by wrapping link text in brackets [ ], and then wrapping the URL in parentheses ( ).
[License](/pages/license/index.html)
[GitHub](https://github.com)
You can display an image by adding ! and wrapping the alt text in [ ]. Alt text is a short text equivalent of the information in the image. Then, wrap the link for the image in parentheses ( ).


You can make an unordered list by preceding one or more lines of text with -, * or +.
- JavaScript
- Python
- Rust
To order your list, precede each line with a number.
1. JavaScript
2. Python
3. Rust
You can create a nested list by indenting one or more list items below another item.
- Programming Languages
  - JavaScript
  - Python
  - Rust
- Operating Systems
  1. Windows
  2. Linux
  3. macOS
You can create a new paragraph by leaving a blank line between lines of text.
You can add footnotes to your content by using this bracket syntax:
Earth is the third planet from the Sun [^sun].
Jupiter is the fifth planet from the Sun and the largest in the Solar System. [^solar_system].
[^sun]: The [Sun](https://en.wikipedia.org/wiki/Sun) is the star at the center of the Solar System.
[^solar_system]: The Solar System is the gravitationally bound system of the Sun and the objects that orbit it.
Earth is the third planet from the Sun [1].
Jupiter is the fifth planet from the Sun and the largest in the Solar System. [2].
The position of a footnote in your Markdown does not influence where the footnote will be rendered. You can write a footnote right after your reference to the footnote, and the footnote will still render at the bottom of the Markdown.