MarkDown语法
Markdown Cheatsheet
Heading 1
Markup :  # Heading 1 #
-OR-
Markup :  ============= (below H1 text)
Heading 2
Markup :  ## Heading 2 ##
-OR-
Markup: --------------- (below H2 text)
Heading 3
Markup :  ### Heading 3 ###
Heading 4
Markup :  #### Heading 4 ####
Common text
Markup :  Common text
Emphasized text
Markup :  _Emphasized text_ or *Emphasized text*
Strikethrough text
Markup :  ~~Strikethrough text~~
Strong text
Markup :  __Strong text__ or **Strong text**
Strong emphasized text
Markup :  ___Strong emphasized text___ or ***Strong emphasized text***
Named Link and http://www.google.fr/ or http://example.com/
Markup :  [Named Link](http://www.google.fr/ "Named link title") and http://www.google.fr/ or <http://example.com/>
Markup: [heading-1](#heading-1 "Goto heading-1")
Table, like this one :
| First Header | Second Header | 
|---|---|
| Content Cell | Content Cell | 
| Content Cell | Content Cell | 
1  | First Header | Second Header  | 
Adding a pipe | in a cell :
| First Header | Second Header | 
|---|---|
| Content Cell | Content Cell | 
| Content Cell | | | 
1  | First Header | Second Header  | 
Left, right and center aligned table
| Left aligned Header | Right aligned Header | Center aligned Header | 
|---|---|---|
| Content Cell | Content Cell | Content Cell | 
| Content Cell | Content Cell | Content Cell | 
1  | Left aligned Header | Right aligned Header | Center aligned Header  | 
code()
Markup :  `code()`
1  | var specificLanguage_code =  | 
Markup : ```javascript
         1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
* Bullet list
    * Nested bullet
        * Sub-nested bullet etc
* Bullet list item 2
~~~
 Markup : * Bullet list
              * Nested bullet
                  * Sub-nested bullet etc
          * Bullet list item 2
-OR-
 Markup : - Bullet list
              - Nested bullet
                  - Sub-nested bullet etc
          - Bullet list item 2 
~~~
1. A numbered list
    1. A nested numbered list
    2. Which is numbered
2. Which is numbered
~~~
 Markup : 1. A numbered list
              1. A nested numbered list
              2. Which is numbered
          2. Which is numbered
~~~
- [ ] An uncompleted task
- [x] A completed task
~~~
 Markup : - [ ] An uncompleted task
          - [x] A completed task
~~~
- [ ] An uncompleted task
    - [ ] A subtask
~~~
 Markup : - [ ] An uncompleted task
              - [ ] A subtask
~~~
> Blockquote
>> Nested blockquote
    Markup :  > Blockquote
              >> Nested Blockquote
_Horizontal line :_
- - - -
    Markup :  - - - -
_Image with alt :_

    Markup : 
Foldable text:
<details>
  <summary>Title 1</summary>
  <p>Content 1 Content 1 Content 1 Content 1 Content 1</p>
</details>
<details>
  <summary>Title 2</summary>
  <p>Content 2 Content 2 Content 2 Content 2 Content 2</p>
</details>
    Markup : <details>
               <summary>Title 1</summary>
               <p>Content 1 Content 1 Content 1 Content 1 Content 1</p>
             </details>
```html
<h3>HTML</h3>
<p> Some HTML code here </p>
Link to a specific part of the page:
Markup : [text goes here](#section_name)
          section_title<a name="section_name"></a>    
Hotkey:
⌘F
⇧⌘F
Markup : <kbd>⌘F</kbd>
Hotkey list:
| Key | Symbol | 
|---|---|
| Option | ⌥ | 
| Control | ⌃ | 
| Command | ⌘ | 
| Shift | ⇧ | 
| Caps Lock | ⇪ | 
| Tab | ⇥ | 
| Esc | ⎋ | 
| Power | ⌽ | 
| Return | ↩ | 
| Delete | ⌫ | 
| Up | ↑ | 
| Down | ↓ | 
| Left | ← | 
| Right | → | 
Emoji:
:exclamation: Use emoji icons to enhance text. :+1: Look up emoji codes at emoji-cheat-sheet.com
Markup : Code appears between colons :EMOJICODE:
		- 标题: MarkDown语法
 - 作者: Thou
 - 创建于 : 2021-09-25 23:09:40
 - 更新于 : 2024-12-19 15:27:27
 - 链接: https://blog.txgde.space/2021/09/25/MarkDown语法/
 - 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
 
        评论