@codingame/monaco-vscode-markdown-basics-default-extension 1.81.8-next.3 → 1.82.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +2 -0
- package/markdown.tmLanguage.json +43 -4
- package/package.json +4 -3
package/index.d.ts
ADDED
package/markdown.tmLanguage.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"If you want to provide a fix or improvement, please create a pull request against the original repository.",
|
|
5
5
|
"Once accepted there, we are happy to receive an update request."
|
|
6
6
|
],
|
|
7
|
-
"version": "https://github.com/microsoft/vscode-markdown-tm-grammar/commit/
|
|
7
|
+
"version": "https://github.com/microsoft/vscode-markdown-tm-grammar/commit/c635942289ebf40954e69cf3637aac906465ade8",
|
|
8
8
|
"name": "Markdown",
|
|
9
9
|
"scopeName": "text.html.markdown",
|
|
10
10
|
"patterns": [
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
{
|
|
43
43
|
"include": "#html"
|
|
44
44
|
},
|
|
45
|
+
{
|
|
46
|
+
"include": "#table"
|
|
47
|
+
},
|
|
45
48
|
{
|
|
46
49
|
"include": "#paragraph"
|
|
47
50
|
}
|
|
@@ -2437,7 +2440,7 @@
|
|
|
2437
2440
|
"while": "((^|\\G)([ ]{2,4}|\\t))|(^[ \\t]*$)"
|
|
2438
2441
|
},
|
|
2439
2442
|
{
|
|
2440
|
-
"begin": "(^|\\G)([ ]{0,3})([0-9]
|
|
2443
|
+
"begin": "(^|\\G)([ ]{0,3})([0-9]+[\\.\\)])([ \\t])",
|
|
2441
2444
|
"beginCaptures": {
|
|
2442
2445
|
"3": {
|
|
2443
2446
|
"name": "punctuation.definition.list.begin.markdown"
|
|
@@ -2457,7 +2460,7 @@
|
|
|
2457
2460
|
]
|
|
2458
2461
|
},
|
|
2459
2462
|
"paragraph": {
|
|
2460
|
-
"begin": "(^|\\G)[ ]{0,3}(
|
|
2463
|
+
"begin": "(^|\\G)[ ]{0,3}(?=[^ \\t\\n])",
|
|
2461
2464
|
"name": "meta.paragraph.markdown",
|
|
2462
2465
|
"patterns": [
|
|
2463
2466
|
{
|
|
@@ -2470,7 +2473,7 @@
|
|
|
2470
2473
|
"include": "#heading-setext"
|
|
2471
2474
|
}
|
|
2472
2475
|
],
|
|
2473
|
-
"while": "(^|\\G)((?=\\s*[-=]{3,}\\s*$)|[ ]{4,}(
|
|
2476
|
+
"while": "(^|\\G)((?=\\s*[-=]{3,}\\s*$)|[ ]{4,}(?=[^ \\t\\n]))"
|
|
2474
2477
|
},
|
|
2475
2478
|
"raw_block": {
|
|
2476
2479
|
"begin": "(^|\\G)([ ]{4}|\\t)",
|
|
@@ -2491,6 +2494,42 @@
|
|
|
2491
2494
|
],
|
|
2492
2495
|
"end": "(^|\\G)-{3}|\\.{3}\\s*$"
|
|
2493
2496
|
},
|
|
2497
|
+
"table": {
|
|
2498
|
+
"name": "markup.table.markdown",
|
|
2499
|
+
"begin": "(^|\\G)(\\|)(?=[^|].+\\|\\s*$)",
|
|
2500
|
+
"beginCaptures": {
|
|
2501
|
+
"2": {
|
|
2502
|
+
"name": "punctuation.definition.table.markdown"
|
|
2503
|
+
}
|
|
2504
|
+
},
|
|
2505
|
+
"while": "(^|\\G)(?=\\|)",
|
|
2506
|
+
"patterns": [
|
|
2507
|
+
{
|
|
2508
|
+
"match": "\\|",
|
|
2509
|
+
"name": "punctuation.definition.table.markdown"
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
"match": "(?<=\\|)\\s*(:?-+:?)\\s*(?=\\|)",
|
|
2513
|
+
"captures": {
|
|
2514
|
+
"1": {
|
|
2515
|
+
"name": "punctuation.separator.table.markdown"
|
|
2516
|
+
}
|
|
2517
|
+
}
|
|
2518
|
+
},
|
|
2519
|
+
{
|
|
2520
|
+
"match": "(?<=\\|)\\s*(?=\\S)((\\\\\\||[^|])+)(?<=\\S)\\s*(?=\\|)",
|
|
2521
|
+
"captures": {
|
|
2522
|
+
"1": {
|
|
2523
|
+
"patterns": [
|
|
2524
|
+
{
|
|
2525
|
+
"include": "#inline"
|
|
2526
|
+
}
|
|
2527
|
+
]
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2530
|
+
}
|
|
2531
|
+
]
|
|
2532
|
+
},
|
|
2494
2533
|
"inline": {
|
|
2495
2534
|
"patterns": [
|
|
2496
2535
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-markdown-basics-default-extension",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.82.1",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -9,14 +9,15 @@
|
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "https://github.com/CodinGame/monaco-vscode-api"
|
|
12
|
+
"url": "git+https://github.com/CodinGame/monaco-vscode-api.git"
|
|
13
13
|
},
|
|
14
14
|
"type": "module",
|
|
15
15
|
"private": false,
|
|
16
16
|
"description": "Default VSCode extension designed to be used with @codingame/monaco-vscode-api",
|
|
17
17
|
"main": "index.js",
|
|
18
18
|
"module": "index.js",
|
|
19
|
+
"types": "index.d.ts",
|
|
19
20
|
"dependencies": {
|
|
20
|
-
"vscode": "npm:@codingame/monaco-vscode-api@1.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@1.82.1"
|
|
21
22
|
}
|
|
22
23
|
}
|