Markdown Syntax
Heads
H2 Tag ## Title
H3 Tag ### Title
Emphasis
italic *italic*
italic _italic_
bold **bold**
bold __bold__
Strikethrough ~~Strikethrough~~
Unordered lists
- Item 1
- Item 2
- Item 2a
- Item 2b
- item 2b1
- Item 3
1 | * Item 1 |
Ordered lists
- first
- second
- 1
- 2
- third
1 | 1. first |
Images
Inline link: 
reference link: ![id]: url "Optional title"
![Text][id]
Control size: <img src="url" style="zoom:30%" />
Links
GitHub
Inline link: [Text](url "Optional title")
Reference link: [id]: url "Optional title"
[Text][id]
Blockquotes
As kanye said:
This is a Blockquotes
This is nested blockquote
This is nested nested blockquote
> content
> > nested conteng
> > > nested nested content
Inline code
you can use <TAB>
(4 space) to insert a code
write code here
Syntax highlighting
for code python
1
2
3
4def delURL(text):
text = re.sub(r"http\S+", "", text)
text = re.sub(r"@\S+", "", text)
return text
```python
code here
```
Task lists
- need to do 1
- already do
1 | - [ ] need to do 1 |
Tables
First Header | Second Header |
---|---|
cell1 | cell2 |
cell3 | cell4 |
1 | First Header | Second Header |
Videos
Author: Min Gao
如需转载或引用, 请标注出处。