@hpcc-js/markdown-it-plugins 1.5.10 → 1.5.12
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/LICENSE +43 -43
- package/README.md +47 -47
- package/dist/assets/hpcc-systems-dark.svg +78 -78
- package/dist/assets/hpcc-systems.svg +68 -68
- package/dist/ecl-lang.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/loader.node.js.map +1 -1
- package/package.json +7 -5
- package/src/__package__.ts +3 -3
- package/src/ecl-lang/ecl-configuration.json +163 -163
- package/src/ecl-lang/ecl.tmLanguage.json +347 -347
- package/src/ecl-lang/index.ts +12 -12
- package/src/fence.ts +59 -59
- package/src/index.ts +47 -47
- package/src/loader.ts +154 -154
- package/src/render.ts +63 -63
- package/src/template-literal.ts +113 -113
- package/src/util.ts +81 -81
- package/src/vitepress/RenderComponent.vue +32 -32
- package/src/vitepress/card.css +43 -43
- package/src/vitepress/global.css +284 -284
- package/src/vitepress/grid.css +82 -82
- package/src/vitepress/inspector.css +193 -193
- package/src/vitepress/layout.css +684 -684
- package/src/vitepress/note.css +80 -80
- package/src/vitepress/plot.css +6 -6
- package/src/vitepress/style.css +113 -113
- package/src/vitepress/styles.ts +8 -8
|
@@ -1,164 +1,164 @@
|
|
|
1
|
-
{
|
|
2
|
-
"comments": {
|
|
3
|
-
// symbol used for single line comment. Remove this entry if your language does not support line comments
|
|
4
|
-
"lineComment": "//",
|
|
5
|
-
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
|
|
6
|
-
"blockComment": [
|
|
7
|
-
"/*",
|
|
8
|
-
"*/"
|
|
9
|
-
]
|
|
10
|
-
},
|
|
11
|
-
// symbols used as brackets
|
|
12
|
-
"brackets": [
|
|
13
|
-
[
|
|
14
|
-
"{",
|
|
15
|
-
"}"
|
|
16
|
-
],
|
|
17
|
-
[
|
|
18
|
-
"[",
|
|
19
|
-
"]"
|
|
20
|
-
],
|
|
21
|
-
[
|
|
22
|
-
"(",
|
|
23
|
-
")"
|
|
24
|
-
]
|
|
25
|
-
],
|
|
26
|
-
// symbols that are auto closed when typing
|
|
27
|
-
"autoClosingPairs": [
|
|
28
|
-
[
|
|
29
|
-
"{",
|
|
30
|
-
"}"
|
|
31
|
-
],
|
|
32
|
-
[
|
|
33
|
-
"[",
|
|
34
|
-
"]"
|
|
35
|
-
],
|
|
36
|
-
[
|
|
37
|
-
"(",
|
|
38
|
-
")"
|
|
39
|
-
],
|
|
40
|
-
[
|
|
41
|
-
"'",
|
|
42
|
-
"'"
|
|
43
|
-
]
|
|
44
|
-
],
|
|
45
|
-
// symbols that that can be used to surround a selection
|
|
46
|
-
"surroundingPairs": [
|
|
47
|
-
[
|
|
48
|
-
"{",
|
|
49
|
-
"}"
|
|
50
|
-
],
|
|
51
|
-
[
|
|
52
|
-
"[",
|
|
53
|
-
"]"
|
|
54
|
-
],
|
|
55
|
-
[
|
|
56
|
-
"(",
|
|
57
|
-
")"
|
|
58
|
-
],
|
|
59
|
-
[
|
|
60
|
-
"\"",
|
|
61
|
-
"\""
|
|
62
|
-
],
|
|
63
|
-
[
|
|
64
|
-
"'",
|
|
65
|
-
"'"
|
|
66
|
-
],
|
|
67
|
-
[
|
|
68
|
-
"function",
|
|
69
|
-
"end;"
|
|
70
|
-
],
|
|
71
|
-
[
|
|
72
|
-
"Function",
|
|
73
|
-
"End;"
|
|
74
|
-
],
|
|
75
|
-
[
|
|
76
|
-
"FUNCTION",
|
|
77
|
-
"END;"
|
|
78
|
-
],
|
|
79
|
-
[
|
|
80
|
-
"module",
|
|
81
|
-
"end;"
|
|
82
|
-
],
|
|
83
|
-
[
|
|
84
|
-
"Module",
|
|
85
|
-
"End;"
|
|
86
|
-
],
|
|
87
|
-
[
|
|
88
|
-
"MODULE",
|
|
89
|
-
"END;"
|
|
90
|
-
],
|
|
91
|
-
[
|
|
92
|
-
"interface",
|
|
93
|
-
"end;"
|
|
94
|
-
],
|
|
95
|
-
[
|
|
96
|
-
"Interface",
|
|
97
|
-
"End;"
|
|
98
|
-
],
|
|
99
|
-
[
|
|
100
|
-
"INTERFACE",
|
|
101
|
-
"END;"
|
|
102
|
-
],
|
|
103
|
-
[
|
|
104
|
-
"transform",
|
|
105
|
-
"end;"
|
|
106
|
-
],
|
|
107
|
-
[
|
|
108
|
-
"Transform",
|
|
109
|
-
"End;"
|
|
110
|
-
],
|
|
111
|
-
[
|
|
112
|
-
"TRANSFORM",
|
|
113
|
-
"END;"
|
|
114
|
-
],
|
|
115
|
-
[
|
|
116
|
-
"record",
|
|
117
|
-
"end;"
|
|
118
|
-
],
|
|
119
|
-
[
|
|
120
|
-
"Record",
|
|
121
|
-
"End;"
|
|
122
|
-
],
|
|
123
|
-
[
|
|
124
|
-
"RECORD",
|
|
125
|
-
"END;"
|
|
126
|
-
],
|
|
127
|
-
[
|
|
128
|
-
"beginc++",
|
|
129
|
-
"endc++;"
|
|
130
|
-
],
|
|
131
|
-
[
|
|
132
|
-
"Beginc++",
|
|
133
|
-
"Endc++;"
|
|
134
|
-
],
|
|
135
|
-
[
|
|
136
|
-
"BEGINC++",
|
|
137
|
-
"ENDC++;"
|
|
138
|
-
],
|
|
139
|
-
[
|
|
140
|
-
"macro",
|
|
141
|
-
"endmacro;"
|
|
142
|
-
],
|
|
143
|
-
[
|
|
144
|
-
"MACRO",
|
|
145
|
-
"ENDMACRO;"
|
|
146
|
-
],
|
|
147
|
-
[
|
|
148
|
-
"Macro",
|
|
149
|
-
"Endmacro;"
|
|
150
|
-
],
|
|
151
|
-
[
|
|
152
|
-
"functionmacro",
|
|
153
|
-
"endmacro;"
|
|
154
|
-
],
|
|
155
|
-
[
|
|
156
|
-
"Functionmacro",
|
|
157
|
-
"Endmacro;"
|
|
158
|
-
],
|
|
159
|
-
[
|
|
160
|
-
"FUNCTIONMACRO",
|
|
161
|
-
"ENDMACRO;"
|
|
162
|
-
]
|
|
163
|
-
]
|
|
1
|
+
{
|
|
2
|
+
"comments": {
|
|
3
|
+
// symbol used for single line comment. Remove this entry if your language does not support line comments
|
|
4
|
+
"lineComment": "//",
|
|
5
|
+
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
|
|
6
|
+
"blockComment": [
|
|
7
|
+
"/*",
|
|
8
|
+
"*/"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
// symbols used as brackets
|
|
12
|
+
"brackets": [
|
|
13
|
+
[
|
|
14
|
+
"{",
|
|
15
|
+
"}"
|
|
16
|
+
],
|
|
17
|
+
[
|
|
18
|
+
"[",
|
|
19
|
+
"]"
|
|
20
|
+
],
|
|
21
|
+
[
|
|
22
|
+
"(",
|
|
23
|
+
")"
|
|
24
|
+
]
|
|
25
|
+
],
|
|
26
|
+
// symbols that are auto closed when typing
|
|
27
|
+
"autoClosingPairs": [
|
|
28
|
+
[
|
|
29
|
+
"{",
|
|
30
|
+
"}"
|
|
31
|
+
],
|
|
32
|
+
[
|
|
33
|
+
"[",
|
|
34
|
+
"]"
|
|
35
|
+
],
|
|
36
|
+
[
|
|
37
|
+
"(",
|
|
38
|
+
")"
|
|
39
|
+
],
|
|
40
|
+
[
|
|
41
|
+
"'",
|
|
42
|
+
"'"
|
|
43
|
+
]
|
|
44
|
+
],
|
|
45
|
+
// symbols that that can be used to surround a selection
|
|
46
|
+
"surroundingPairs": [
|
|
47
|
+
[
|
|
48
|
+
"{",
|
|
49
|
+
"}"
|
|
50
|
+
],
|
|
51
|
+
[
|
|
52
|
+
"[",
|
|
53
|
+
"]"
|
|
54
|
+
],
|
|
55
|
+
[
|
|
56
|
+
"(",
|
|
57
|
+
")"
|
|
58
|
+
],
|
|
59
|
+
[
|
|
60
|
+
"\"",
|
|
61
|
+
"\""
|
|
62
|
+
],
|
|
63
|
+
[
|
|
64
|
+
"'",
|
|
65
|
+
"'"
|
|
66
|
+
],
|
|
67
|
+
[
|
|
68
|
+
"function",
|
|
69
|
+
"end;"
|
|
70
|
+
],
|
|
71
|
+
[
|
|
72
|
+
"Function",
|
|
73
|
+
"End;"
|
|
74
|
+
],
|
|
75
|
+
[
|
|
76
|
+
"FUNCTION",
|
|
77
|
+
"END;"
|
|
78
|
+
],
|
|
79
|
+
[
|
|
80
|
+
"module",
|
|
81
|
+
"end;"
|
|
82
|
+
],
|
|
83
|
+
[
|
|
84
|
+
"Module",
|
|
85
|
+
"End;"
|
|
86
|
+
],
|
|
87
|
+
[
|
|
88
|
+
"MODULE",
|
|
89
|
+
"END;"
|
|
90
|
+
],
|
|
91
|
+
[
|
|
92
|
+
"interface",
|
|
93
|
+
"end;"
|
|
94
|
+
],
|
|
95
|
+
[
|
|
96
|
+
"Interface",
|
|
97
|
+
"End;"
|
|
98
|
+
],
|
|
99
|
+
[
|
|
100
|
+
"INTERFACE",
|
|
101
|
+
"END;"
|
|
102
|
+
],
|
|
103
|
+
[
|
|
104
|
+
"transform",
|
|
105
|
+
"end;"
|
|
106
|
+
],
|
|
107
|
+
[
|
|
108
|
+
"Transform",
|
|
109
|
+
"End;"
|
|
110
|
+
],
|
|
111
|
+
[
|
|
112
|
+
"TRANSFORM",
|
|
113
|
+
"END;"
|
|
114
|
+
],
|
|
115
|
+
[
|
|
116
|
+
"record",
|
|
117
|
+
"end;"
|
|
118
|
+
],
|
|
119
|
+
[
|
|
120
|
+
"Record",
|
|
121
|
+
"End;"
|
|
122
|
+
],
|
|
123
|
+
[
|
|
124
|
+
"RECORD",
|
|
125
|
+
"END;"
|
|
126
|
+
],
|
|
127
|
+
[
|
|
128
|
+
"beginc++",
|
|
129
|
+
"endc++;"
|
|
130
|
+
],
|
|
131
|
+
[
|
|
132
|
+
"Beginc++",
|
|
133
|
+
"Endc++;"
|
|
134
|
+
],
|
|
135
|
+
[
|
|
136
|
+
"BEGINC++",
|
|
137
|
+
"ENDC++;"
|
|
138
|
+
],
|
|
139
|
+
[
|
|
140
|
+
"macro",
|
|
141
|
+
"endmacro;"
|
|
142
|
+
],
|
|
143
|
+
[
|
|
144
|
+
"MACRO",
|
|
145
|
+
"ENDMACRO;"
|
|
146
|
+
],
|
|
147
|
+
[
|
|
148
|
+
"Macro",
|
|
149
|
+
"Endmacro;"
|
|
150
|
+
],
|
|
151
|
+
[
|
|
152
|
+
"functionmacro",
|
|
153
|
+
"endmacro;"
|
|
154
|
+
],
|
|
155
|
+
[
|
|
156
|
+
"Functionmacro",
|
|
157
|
+
"Endmacro;"
|
|
158
|
+
],
|
|
159
|
+
[
|
|
160
|
+
"FUNCTIONMACRO",
|
|
161
|
+
"ENDMACRO;"
|
|
162
|
+
]
|
|
163
|
+
]
|
|
164
164
|
}
|