-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathmarkdown.snip
81 lines (66 loc) · 1.29 KB
/
markdown.snip
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
snippet link
abbr [link][]
options word
[${1:#:link_id}][]${2}
snippet linkid
abbr [link][id]
options word
[${1:#:link}][${2:id}]${3}
snippet linkurl
abbr [link](url)
options word
[${1:#:link}](https://${2:#:url})${3}
snippet linkemail
abbr [link](email)
options word
[${1:#:link}](mailto:${2:#:email})${3}
snippet linkurltitle
abbr [link](url "title")
options word
[${1:#:link}](${2:#:url} "${3:#:title}")${4}
snippet idurl
abbr [id]: url "title"
options word
[${1:#:id}]: https://${2:#:url} "${3:#:title}"
snippet idemail
abbr [id]: email "title"
options word
[${1:#:id}]: mailto:${2:#:url} "${3:#:title}"
snippet altid
abbr ![alt][id]
options word
![${1:#:alt}][${2:#:id}]${3}
snippet alturl
abbr 
options word
${3}
snippet alturltitle
abbr 
options word
${4}
snippet emphasis1
abbr *emphasis*
options word
*${1}*${2}
snippet emphasis2
abbr _emphasis_
options word
_${1}_${2}
snippet strong1
abbr **strong**
options word
**${1}**${2}
snippet strong2
abbr __strong__
options word
__${1}__${2}
snippet code
abbr `code`
options word
\`${1}\`${2}
snippet codeblock
abbr code block
options head
\`\`\`${1:#:language}
${2:#:code }
\`\`\`