# Header H1
or
Header H1
=========
## Header H2
or
Header H1
---------
### Header H3
#### Header H4
**bold**
or
__bold__
*Italic**
or
_Italic_
~~strikethrough~~
==highlight==
N^4^
or
N<sup>4</sup>
H~2~O
or
H<sub>2</sub>O
[link](https://domain.com)
or
[link][1]
[1]: (https://domain.com)
or
<https://domain.com>
if you want to add an attribute
[link](https://domain.com "Write here for an attribute")
![text](https://domain.com/immage.jpg)
or
[text][1]
[1]: (https://domain.com/immage.jpg)
or (centered)
![text](https://domain.com/immage.jpg#center)
or (with a description)
![text](https://domain.com/immage.jpg "Description")
> quote
or nested
>> nested quote
* Point
* Point
* Point
or
- Point
- Point
- Point
or
+ Point
+ Point
+ Point
1. First
2. Second
3. Third
or
1) First
2) Second
3) Third
or
1. First
1. Second
1. Third
- [x] to do 01
- [ ] to do 02
- [ ] to do 03
*** (three consecutive asterisks)
or
--- (three consecutive dashes)
or
___ (three consecutive underscores)
`inline code`
or
code block (indented of four spaces)
```
code block
ABC
ABC
```
or
~~~
code block
ABC
ABC
~~~
or (indented of four spaces)
abc
abc
abc
or
```python
print(f"2+2 = {2+2}")
```
| Column1 | Column2 | Column3 |
| -------- | -------- | -------- |
| One | Two | Three |
| Four | Five | Six |
Text where to put the footnote identifier[^1]
[^1]: footnote text
or
Text where to put the footnote label[^label]
[^label]: footnote text
This page is a work-in-progress and therefore, the page may be subject to updates.
Stay tuned!