@hpcc-js/markdown-it-plugins 1.5.4 → 1.5.6

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.
@@ -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
  }