forked from BryanWilhite/vscode-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.json
More file actions
107 lines (107 loc) · 3.52 KB
/
Copy pathhtml.json
File metadata and controls
107 lines (107 loc) · 3.52 KB
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
{
"Insert html: sample page (CodePen)": {
"prefix": "sample page (CodePen)",
"body": [
"<!DOCTYPE html>",
"<html>",
" <head>",
" <meta name=\"description\" content=\"This is a sample for my self-education.\" />",
" <meta charset=\"utf-8\" />",
" <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />",
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />",
"",
" <link href=\"./index.css\" rel=\"stylesheet\" />",
"",
" <script src=\"./index.js\"></script>",
"",
" <title>${1:title}</title>",
" </head>",
" <body>",
" <h1>${1:title}</h1>",
" $0",
" </body>",
"</html>"
],
"description": "Insert html: sample page (CodePen)"
},
"Insert entity: non-breaking space": {
"prefix": "nbsp",
"body": [" $0"],
"description": "Insert entity: non-breaking space"
},
"Insert glyphs: apostrophe": {
"prefix": "apostrophe",
"body": ["’$0"],
"description": "Insert glyphs: apostrophe"
},
"Insert glyph: chevron back": {
"prefix": "chevron back",
"body": ["«$0"],
"description": "Insert glyph: chevron back"
},
"Insert glyph: chevron forward": {
"prefix": "chevron forward",
"body": ["»$0"],
"description": "Insert glyph: chevron forward"
},
"Insert glyph: copyright": {
"prefix": "copyright",
"body": ["©$0"],
"description": "Insert glyph: copyright"
},
"Insert glyph: degree sign": {
"prefix": "degree sign",
"body": ["°$0"],
"description": "Insert glyph: degree sign"
},
"Insert glyph: em dash": {
"prefix": "em dash",
"body": ["—$0"],
"description": "Insert glyph: em dash"
},
"Insert glyph: en dash": {
"prefix": "en dash",
"body": ["–$0"],
"description": "Insert glyph: en dash"
},
"Insert glyph: Euro sign": {
"prefix": "Euro sign",
"body": ["€$0"],
"description": "Insert glyph: Euro sign"
},
"Insert glyph: multiplication sign": {
"prefix": "multiplication sign",
"body": ["×$0"],
"description": "Insert glyph: multiplication sign"
},
"Insert glyph: pound sign": {
"prefix": "pound sign",
"body": ["£$0"],
"description": "Insert glyph: pound sign"
},
"Insert glyph: registered trademark": {
"prefix": "registered trademark",
"body": ["®$0"],
"description": "Insert glyph: registered trademark"
},
"Insert glyph: numerical range": {
"prefix": "numerical range",
"body": ["$1–$2$0"],
"description": "glyphs: numerical range"
},
"Insert glyphs: bullet item with quotes": {
"prefix": "bullet item with quotes",
"body": ["* “$0”"],
"description": "Insert glyphs: bullet item with quotes"
},
"Insert glyphs: single quotes": {
"prefix": "single quotes",
"body": ["‘${0:${TM_SELECTED_TEXT}}’"],
"description": "Insert glyphs: ‘single’ quotes"
},
"Insert glyphs: smart quotes": {
"prefix": "smart quotes",
"body": ["“${0:${TM_SELECTED_TEXT}}”"],
"description": "Insert glyphs: “smart” quotes"
}
}