-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
372 lines (369 loc) · 12.1 KB
/
package.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
{
"publisher": "baincd",
"name": "markdown-color-plus",
"displayName": "Markdown Color Plus",
"description": "Additional Colorization for Markdown Files (background color of code, invisible line breaks, strikethrough text, blockquotes, horizontal rules, setext headers, and highlighting current section headers)",
"version": "1.6.1",
"license": "MIT",
"engines": {
"vscode": "^1.32.0"
},
"repository": {
"type": "git",
"url": "https://github.com/baincd/vscode-markdown-color-plus"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/main.js",
"contributes": {
"configuration": [
{
"title": "Markdown Color Plus",
"order": 0,
"properties": {
"markdown-color-plus.delays.activeEditorChanged": {
"type": "integer",
"default": 100,
"markdownDescription": "Millisecond delay between switching editors and updating background colors.\n\n*If experiencing issues with the editor background colors not being set or disappearing shortly after an editor is made visible, increasing this delay should help.*",
"order": 0
},
"markdown-color-plus.delays.editTextChanged": {
"type": "integer",
"default": 100,
"markdownDescription": "Millisecond delay between changing text in a document and updating background colors.\n\n*Increasing this delay will reduce how often the extension loops through the document to update background colors, which could be beneficial if you work on very large markdown documents or have a slower workstation.*",
"order": 1
}
}
},
{
"title": "Fenced Code Blocks",
"order": 1,
"properties": {
"markdown-color-plus.fencedCodeBlock.background.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable coloring the background of fenced code blocks",
"order": 0
},
"markdown-color-plus.fencedCodeBlock.background.lightThemeColor": {
"type": "string",
"format": "color",
"default": "#DCDCDC66",
"markdownDescription": "CSS color for background of fenced code blocks on light themes",
"order": 1
},
"markdown-color-plus.fencedCodeBlock.background.darkThemeColor": {
"type": "string",
"format": "color",
"default": "#0A0A0A66",
"markdownDescription": "CSS color for background of fenced code blocks on dark themes",
"order": 2
}
}
},
{
"title": "Indented Code Blocks",
"order": 2,
"properties": {
"markdown-color-plus.indentedCodeBlock.background.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable coloring the background of indented code blocks",
"order": 0
},
"markdown-color-plus.indentedCodeBlock.background.lightThemeColor": {
"type": "string",
"format": "color",
"default": "#DCDCDC66",
"markdownDescription": "CSS color for background of indented code blocks on light themes",
"order": 1
},
"markdown-color-plus.indentedCodeBlock.background.darkThemeColor": {
"type": "string",
"format": "color",
"default": "#0A0A0A66",
"markdownDescription": "CSS color for background of indented code blocks on dark themes",
"order": 2
}
}
},
{
"title": "Inline Code",
"order": 3,
"properties": {
"markdown-color-plus.inlineCode.background.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable coloring the background of inline code",
"order": 0
},
"markdown-color-plus.inlineCode.background.lightThemeColor": {
"type": "string",
"format": "color",
"default": "#DCDCDC66",
"markdownDescription": "CSS color for background of inline code on light themes",
"order": 1
},
"markdown-color-plus.inlineCode.background.darkThemeColor": {
"type": "string",
"format": "color",
"default": "#0A0A0A66",
"markdownDescription": "CSS color for background of inline code on dark themes",
"order": 2
}
}
},
{
"title": "invisible Line Breaks",
"order": 4,
"properties": {
"markdown-color-plus.invisibleLineBreak.background.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable highlighting invisible line breaks (2 spaces at the end of a line)",
"order": 0
},
"markdown-color-plus.invisibleLineBreak.background.lightThemeColor": {
"type": "string",
"format": "color",
"default": "#FFE4C488",
"markdownDescription": "CSS color for invisible line breaks (2 spaces at the end of a line) on light themes",
"order": 1
},
"markdown-color-plus.invisibleLineBreak.background.darkThemeColor": {
"type": "string",
"format": "color",
"default": "#4169E133",
"markdownDescription": "CSS color for invisible line breaks (2 spaces at the end of a line) on dark themes",
"order": 2
}
}
},
{
"title": "Strikethrough Text",
"order": 5,
"properties": {
"markdown-color-plus.strikethrough.decoration.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable strikethrough decoration of text between strikethrough markers",
"order": 0
},
"markdown-color-plus.strikethrough.decoration.opacity": {
"type": "string",
"default": "0.60",
"markdownDescription": "Opacity of text between strikethrough markers",
"order": 1
}
}
},
{
"title": "Blockquote",
"order": 6,
"properties": {
"markdown-color-plus.blockquote.style.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable styles of blockquotes",
"order": 0
},
"markdown-color-plus.blockquote.style.line.background.lightThemeColor": {
"type": "string",
"format": "color",
"default": "#DCDCDC26",
"markdownDescription": "CSS color for background of blockquotes on light themes",
"order": 1
},
"markdown-color-plus.blockquote.style.line.background.darkThemeColor": {
"type": "string",
"format": "color",
"default": "#40404046",
"markdownDescription": "CSS color for background of blockquotes on dark themes",
"order": 2
},
"markdown-color-plus.blockquote.style.symbol.background.lightThemeColor": {
"type": "string",
"default": "#8A9BAD66",
"format": "color",
"markdownDescription": "CSS color for background of blockquote symbols on light themes",
"order": 3
},
"markdown-color-plus.blockquote.style.symbol.background.darkThemeColor": {
"type": "string",
"default": "#8A9BAD50",
"format": "color",
"markdownDescription": "CSS color for background of blockquote symbols on dark themes",
"order": 4
},
"markdown-color-plus.blockquote.style.symbol.opacity": {
"type": "string",
"default": "0.20",
"markdownDescription": "Opacity of blockquote symbols",
"order": 5
},
"markdown-color-plus.blockquote.style.text.fontStyle": {
"type": "string",
"default": "normal",
"markdownDescription": "CSS font style (normal, italic, etc.) of blockquote text",
"examples": [
"normal",
"italic",
"oblique"
],
"order": 6
},
"markdown-color-plus.blockquote.style.text.opacity": {
"type": "string",
"default": "0.60",
"markdownDescription": "Opacity of blockquote text",
"order": 7
}
}
},
{
"title": "Horizontal Rule",
"order": 7,
"properties": {
"markdown-color-plus.horizontalRule.style.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable coloring the background of horizontal rules",
"order": 0
},
"markdown-color-plus.horizontalRule.style.background.lightThemeColor": {
"type": "string",
"format": "color",
"default": "#B0B0B0",
"markdownDescription": "CSS color for background of horizontal rules on light themes",
"order": 1
},
"markdown-color-plus.horizontalRule.style.background.darkThemeColor": {
"type": "string",
"format": "color",
"default": "#404040",
"markdownDescription": "CSS color for background of horizontal rules on dark themes",
"order": 2
},
"markdown-color-plus.horizontalRule.style.opacity": {
"type": "string",
"default": "0.60",
"markdownDescription": "Opacity of horizontal rule text",
"order": 3
}
}
},
{
"title": "Alternate Headers",
"order": 8,
"properties": {
"markdown-color-plus.setextL1StyleHeader.style.text.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable style of text on Setext-style level 1 headers",
"order": 0
},
"markdown-color-plus.setextL1StyleHeader.style.text.lightThemeColor": {
"type": "string",
"format": "color",
"default": "#800000",
"markdownDescription": "CSS color for the text of Setext-style level 1 headers on light themes",
"order": 1
},
"markdown-color-plus.setextL1StyleHeader.style.text.darkThemeColor": {
"type": "string",
"format": "color",
"default": "#569CD6",
"markdownDescription": "CSS color for the text of Setext-style level 1 headers on dark themes",
"order": 2
},
"markdown-color-plus.setextL1StyleHeader.style.text.bold": {
"type": "boolean",
"default": true,
"markdownDescription": "Make the text of Setext-style level 1 headers bold",
"order": 3
},
"markdown-color-plus.setextL2StyleHeader.style.text.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable style of text on Setext-style level 2 headers",
"order": 4
},
"markdown-color-plus.setextL2StyleHeader.style.text.lightThemeColor": {
"type": "string",
"format": "color",
"default": "#800000",
"markdownDescription": "CSS color for the text of Setext-style level 2 headers on light themes",
"order": 5
},
"markdown-color-plus.setextL2StyleHeader.style.text.darkThemeColor": {
"type": "string",
"format": "color",
"default": "#569CD6",
"markdownDescription": "CSS color for the text of Setext-style level 2 headers on dark themes",
"order": 6
},
"markdown-color-plus.setextL2StyleHeader.style.text.bold": {
"type": "boolean",
"default": true,
"markdownDescription": "Make the text of Setext-style level 2 headers bold",
"order": 7
}
}
},
{
"title": "Current Header Highlights",
"order": 9,
"properties": {
"markdown-color-plus.currentHeaders.background.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable highlighting of headers for current cursor position",
"order": 0
},
"markdown-color-plus.currentHeaders.background.lightThemeColor": {
"type": "string",
"format": "color",
"default": "#FFFACD70",
"markdownDescription": "CSS color of headers for current cursor position on light themes",
"order": 1
},
"markdown-color-plus.currentHeaders.background.darkThemeColor": {
"type": "string",
"format": "color",
"default": "#8A2BE240",
"markdownDescription": "CSS color of headers for current cursor position on dark themes",
"order": 2
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/glob": "^7.1.1",
"@types/mocha": "^10.0.0",
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"chai": "^4.3.4",
"eslint": "^7.21.0",
"glob": "^7.1.4",
"mocha": "^10.1.0",
"source-map-support": "^0.5.12",
"typescript": "^4.2.2",
"vscode-test": "^1.3.0"
}
}