-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathvs-code-markdown.json
executable file
·76 lines (76 loc) · 1.48 KB
/
vs-code-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
{
"codecaption": {
"prefix": "codecap",
"body": [
"{{< codecaption title=\"${1:title}\" lang=\"${2:language}\" >}}",
"${3:code}",
"{{< /codecaption >}}",
"",
"$0"
],
"description": "codecaption Hugo shortcode"
},
"imgcap": {
"prefix": "imgcap",
"body": [
"{{< imgcap title=\"${1:title}\" src=\"${2:filename}.png\" >}}",
"$0"
],
"description": "image caption Hugo shortcode"
},
"wp": {
"prefix": "wp",
"body": [
"{{< wp tag=\"${1:tag}\" lang=\"${2:lang}\" title=\"${:title}\" >}}"
],
"description": "wikipedia link generator"
},
"blockquote": {
"prefix": "bq",
"body": [
"{{< blockquote author=\"${1:author}\" link=\"${2:link}\" title=\"${3:title}\" >}}",
"${4:quote}",
"{{< blockquote >}}",
"",
"$0"
],
"description": "blockquote"
},
"current year": {
"prefix": "year",
"body": [
"{{< year >}}"
],
"description": "current year"
},
"abbr": {
"prefix": "abbr",
"body": [
"{{< abbr title=\"${1:title}\" text=\"${2:text}\" >}} $0"
],
"description": "abbr HTML tag"
},
"mark": {
"prefix": "mark",
"body": [
"{{< mark text=\"${1:marked-text}\" >}} $0"
],
"description": "mark HTML tag"
},
"toc": {
"prefix": "toc",
"body": [
"{{< toc >}}",
"",
"$0"
],
"description": "table of contents"
},
"xref": {
"prefix": "xref",
"body": [
"{{< xref path=\"/post/2021/${1:2021-01-21-name-of-post}\" text=\"${2:text}\" >}}"
],
"description": "xref shortcode used instead of relref"
}
}