Skip to content

Basics

What is Markdown?#

Markdown is a way to style text on the web. You control the display of the document; formatting words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few non-alphabetic characters thrown in, like # or *.

Syntax guide#

Headers#

1
2
3
# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag

Emphasis#

1
2
3
4
5
6
7
*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__

_You **can** combine them_

Lists#

Unordered#

1
2
3
4
* Item 1
* Item 2
  * Item 2a
  * Item 2b

Ordered#

1
2
3
4
5
1. Item 1
1. Item 2
1. Item 3
   1. Item 3a
   1. Item 3b

Images#

1
![Not found Images](../../img/index/win-py-install.png)
1
[Link](../project/document_tutorial/main/#huong-dan-cai-at)

Tables#

1
2
3
4
5
| Tiêu đề 1     | Tiêu đề 2     | Tiêu đề 3  |
| ------------- |:-------------:| ----------:|
| Dòng 1.1      | Dòng 2.1      | Dòng 3.1   |
| Dòng 1.2      | Dòng 2.2      | Dòng 3.2   |
| Dòng 1.3      | Dòng 2.3      | Dòng 3.3   |

Blockquotes#

1
> Blockquotes write here

Inline code#

1
`Inline code write here`

Block code#

1
2
3
```
Block code write here
```

Task Lists#

1
2
3
4
- [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> supported
- [x] list syntax required (any unordered or ordered list supported)
- [x] this is a complete item
- [ ] this is an incomplete item