-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmarkdown.json
161 lines (161 loc) · 2.43 KB
/
markdown.json
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"H1": {
"prefix": "h1",
"body": [
"# ${1:H1}",
"${0}"
],
"description": "H1"
},
"H2": {
"prefix": "h2",
"body": [
"## ${1:H2}",
"${0}"
],
"description": "H2"
},
"H3": {
"prefix": "h3",
"body": [
"### ${1:H3}",
"${0}"
],
"description": "H3"
},
"H4": {
"prefix": "h4",
"body": [
"#### ${1:H4}",
"${0}"
],
"description": "H4"
},
"picture": {
"prefix": "pic",
"body": [
"![](${1:link})",
"${0}"
],
"description": "picture"
},
"code block": {
"prefix": "code",
"body": [
"```${1:lang}",
"${2:code}",
"```",
"${0}"
],
"description": "code block"
},
"split line": {
"prefix": "line",
"body": [
"",
"---",
"",
"${0}"
],
"description": "split line"
},
"bold font": {
"prefix": "bo",
"body": [
"**${1:content}**${0}"
],
"description": "bold font"
},
"italic font": {
"prefix": "ita",
"body": [
"*${1:content}*${0}"
],
"description": "italic font"
},
"bold italic font": {
"prefix": "bi",
"body": [
"***${1:content}***${0}"
],
"description": "bold italic font"
},
"slashed font": {
"prefix": "sla",
"body": [
"~~${1:content}~~${0}"
],
"description": "slashed font"
},
"inline content": {
"prefix": "ili",
"body": [
"`${1:content}`${0}"
],
"description": "inline content"
},
"inline math": {
"prefix": "ima",
"body": [
"$${1:math}$${0}"
],
"description": "inline math"
},
"blocked math": {
"prefix": "bma",
"body": [
"$$",
"${1:math}",
"$$",
"${0}"
],
"description": "blocked math"
},
"anchor": {
"prefix": "a",
"body": [
"[${1:title}](${2:link})${0}"
],
"description": "anchor"
},
"checked block": {
"prefix": "che",
"body": [
"- [x] ${1:content}${0}"
],
"description": "checked block"
},
"unchecked block": {
"prefix": "uch",
"body": [
"- [ ] ${1:content}${0}"
],
"description": "unchecked block"
},
"centered picture": {
"prefix": "cpic",
"body": [
"<div align=center><img src=\"${1:link}\"></div>",
"${0}"
],
"description": "centered picture"
},
"Insert a simple table with 2 columns": {
"prefix": "table2",
"body": [
"|${0:title} | |",
"| - | - |",
"| | |"
],
"description": "Insert a simple table"
},
"Insert a simple table with 3 columns": {
"prefix": "table3",
"body": [
"|${0:title} | | |",
"| - | - | - | ",
"| | | | "
],
"description": "Insert a simple table"
}
}