backup: Markdown Syntax
A small collection of Markdown general syntax
index
Heading
Level 1 heading
1 | # Level 1 Heading |
Level 2 heading
1 | ## Level 2 heading |
Level 3 heading
1 | ### Level 3 heading |
Level 4 heading
1 | #### Level 4 heading |
Level 5 heading
1 | ##### Level 5 heading |
Level 6 heading
1 | ###### Level 6 heading |
Error Cases
####### 7 Up to level 6 only
####### 7
1 | ####### 7 |
######## 8
1 | ######## 8 |
If it is on the top line of === or ---, it will automatically become a title (corresponding to Level 1 and Level 2)
Quote
This is a quote!
And
it can
overlay
seems that you can always add…
1 | > This is a quote! |
Meow Meow
Meow Meow
Meow Meow
1 | > Meow Meow |
It needs a line break to get the quote out
Font
Bold
Italic
Also italic
Bold and italic
delete
1 | **Bold** |
Dividing Line
1 | --- |
Why can’t you add text in the middle of the split line?  ̄へ ̄
List
Non-numeric list
- dot (〃’▽’〃)
- dot (`・ω・´)
- and dot ( ̄. ̄)
1 | + dot (〃'▽'〃) |
Numbers List
- o( ̄▽ ̄)d
- ( ̄︶ ̄)↗
- ( • ̀ω•́ )✧
1 | 1. o( ̄▽ ̄)d |
List indent
- First
- Second
- Third
- Fourth
- OwO
- Fourth
- Third
- Second
1 | 1. First |
Table
What to write? | I don’t know… | Then write freely. |
---|---|---|
This is the content | This is also content | also~ |
Without a colon or colon on the left | Both left and right is centered | On the right is the right |
1 | |What to write?|I don't know...|Then write freely.| |
Code
1 |
|
1 | ``` c++ |
If it’s a single line of code, you can just `code`
print "Welcome to my blog~"
1 | `print "Welcome to my blog~"` |
``` can be combined with setting code highlighting
Picture
1 | ![avatar~](https://i.loli.net/2018/10/10/5bbdef9771e6a.jpg "avatar") |
Hyperlink
1 | + [test](https://sm.ms "test") |
混合~
1 | [![Try mixing](https://i.loli.net/2018/10/10/5bbdefcf4bc8f.jpg "Try mixing")](https://aslin.site) |
Autolink
1 | <lkjlkj174@gmail.com> |
HTML Tags
Ctrl
Za
Za
1 | <kbd>Ctrl</kbd> |
LaTeX 公式
Task List
- Heading
- Quate
- Font
- Diving Line
- List
- Table
- Code
- Picture
- Hyperlink
- Anchor(toc)
- Autolink
- LaTeX
- Footnotes
- Video (iframe)
- Embedded CSS
- Customized List
- Flowchart
- Timing Chart
- HTML Tags
- TOC
- Task list
1 | - [x] Heading |
Try to translate the original blog, still lack of English skills emmmm
backup: Markdown Syntax