account_circle Toanph
date_range 27/02/2016
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
| # This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag
|
Emphasis
| *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
| * Item 1
* Item 2
* Item 2a
* Item 2b
|
Ordered
| 1. Item 1
1. Item 2
1. Item 3
1. Item 3a
1. Item 3b
|
Images
| 
|
Links
| [Link](../project/document_tutorial/main/#huong-dan-cai-at)
|
Tables
| | 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
Inline code
Block code
| ```
Block code write here
```
|
Task Lists
| - [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
|