mathpix-markdown-it 1.0.72 → 1.0.75

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.
Files changed (76) hide show
  1. package/.idea/vcs.xml +1 -0
  2. package/.idea/workspace.xml +597 -83
  3. package/README.md +133 -1
  4. package/doc/ACCESSIBILITY.md +156 -0
  5. package/es5/bundle.js +1 -1
  6. package/es5/context-menu.js +1 -0
  7. package/es5/index.js +1 -1
  8. package/lib/components/mathpix-markdown/index.js +3 -2
  9. package/lib/components/mathpix-markdown/index.js.map +1 -1
  10. package/lib/contex-menu/index.d.ts +16 -0
  11. package/lib/contex-menu/index.js +108 -0
  12. package/lib/contex-menu/index.js.map +1 -0
  13. package/lib/contex-menu/menu/consts.d.ts +16 -0
  14. package/lib/contex-menu/menu/consts.js +21 -0
  15. package/lib/contex-menu/menu/consts.js.map +1 -0
  16. package/lib/contex-menu/menu/helper.d.ts +10 -0
  17. package/lib/contex-menu/menu/helper.js +113 -0
  18. package/lib/contex-menu/menu/helper.js.map +1 -0
  19. package/lib/contex-menu/menu/index.d.ts +5 -0
  20. package/lib/contex-menu/menu/index.js +106 -0
  21. package/lib/contex-menu/menu/index.js.map +1 -0
  22. package/lib/contex-menu/menu/interfaces.d.ts +6 -0
  23. package/lib/contex-menu/menu/interfaces.js +3 -0
  24. package/lib/contex-menu/menu/interfaces.js.map +1 -0
  25. package/lib/contex-menu/menu/menu-item-actions.d.ts +7 -0
  26. package/lib/contex-menu/menu/menu-item-actions.js +112 -0
  27. package/lib/contex-menu/menu/menu-item-actions.js.map +1 -0
  28. package/lib/contex-menu/menu/menu-item.d.ts +1 -0
  29. package/lib/contex-menu/menu/menu-item.js +66 -0
  30. package/lib/contex-menu/menu/menu-item.js.map +1 -0
  31. package/lib/contex-menu/menu/menu-items.d.ts +1 -0
  32. package/lib/contex-menu/menu/menu-items.js +34 -0
  33. package/lib/contex-menu/menu/menu-items.js.map +1 -0
  34. package/lib/contex-menu/styles.d.ts +1 -0
  35. package/lib/contex-menu/styles.js +8 -0
  36. package/lib/contex-menu/styles.js.map +1 -0
  37. package/lib/context-menu.d.ts +7 -0
  38. package/lib/context-menu.js +10 -0
  39. package/lib/context-menu.js.map +1 -0
  40. package/lib/helpers/parse-mmd-element.d.ts +6 -0
  41. package/lib/helpers/parse-mmd-element.js +82 -0
  42. package/lib/helpers/parse-mmd-element.js.map +1 -0
  43. package/lib/markdown/common/consts.d.ts +2 -0
  44. package/lib/markdown/common/consts.js +4 -1
  45. package/lib/markdown/common/consts.js.map +1 -1
  46. package/lib/markdown/index.js +3 -2
  47. package/lib/markdown/index.js.map +1 -1
  48. package/lib/markdown/mathpix-markdown-plugins.js +3 -2
  49. package/lib/markdown/mathpix-markdown-plugins.js.map +1 -1
  50. package/lib/markdown/md-ascii/index.js +3 -1
  51. package/lib/markdown/md-ascii/index.js.map +1 -1
  52. package/lib/markdown/mdPluginRaw.js +14 -4
  53. package/lib/markdown/mdPluginRaw.js.map +1 -1
  54. package/lib/markdown/mdPluginText.js +80 -2
  55. package/lib/markdown/mdPluginText.js.map +1 -1
  56. package/lib/mathjax/index.d.ts +14 -26
  57. package/lib/mathjax/index.js +139 -136
  58. package/lib/mathjax/index.js.map +1 -1
  59. package/lib/mathjax/mathJaxConfig.js +1 -1
  60. package/lib/mathjax/mathJaxConfig.js.map +1 -1
  61. package/lib/mathjax/mathjax.d.ts +24 -0
  62. package/lib/mathjax/mathjax.js +97 -0
  63. package/lib/mathjax/mathjax.js.map +1 -0
  64. package/lib/mathpix-markdown-model/index.d.ts +8 -1
  65. package/lib/mathpix-markdown-model/index.js +24 -65
  66. package/lib/mathpix-markdown-model/index.js.map +1 -1
  67. package/lib/sre/index.d.ts +5 -0
  68. package/lib/sre/index.js +53 -0
  69. package/lib/sre/index.js.map +1 -0
  70. package/lib/sre/sre-browser.d.ts +1 -0
  71. package/lib/sre/sre-browser.js +11 -0
  72. package/lib/sre/sre-browser.js.map +1 -0
  73. package/lib/sre/sre-node.d.ts +6 -0
  74. package/lib/sre/sre-node.js +34 -0
  75. package/lib/sre/sre-node.js.map +1 -0
  76. package/package.json +6 -2
@@ -1,9 +1,15 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <project version="4">
3
+ <component name="BookmarkManager">
4
+ <bookmark url="file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts" line="315" mnemonic="0" />
5
+ <bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts" line="422" mnemonic="2" />
6
+ <bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts" line="433" mnemonic="4" />
7
+ <bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" line="900" mnemonic="5" />
8
+ <bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts" line="364" mnemonic="3" />
9
+ <bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts" line="845" mnemonic="1" />
10
+ </component>
3
11
  <component name="ChangeListManager">
4
- <list default="true" id="57194d73-380e-4999-b7f4-281db5a1b6dc" name="Default Changelist" comment="">
5
- <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
6
- </list>
12
+ <list default="true" id="57194d73-380e-4999-b7f4-281db5a1b6dc" name="Default Changelist" comment="" />
7
13
  <ignored path="$PROJECT_DIR$/es5/" />
8
14
  <ignored path="$PROJECT_DIR$/.tmp/" />
9
15
  <ignored path="$PROJECT_DIR$/temp/" />
@@ -18,59 +24,112 @@
18
24
  <session id="1706553226">
19
25
  <usages-collector id="statistics.lifecycle.project">
20
26
  <counts>
21
- <entry key="project.closed" value="2" />
22
- <entry key="project.open.time.10" value="1" />
27
+ <entry key="project.closed" value="25" />
28
+ <entry key="project.open.time.10" value="2" />
29
+ <entry key="project.open.time.11" value="2" />
30
+ <entry key="project.open.time.14" value="1" />
31
+ <entry key="project.open.time.15" value="1" />
32
+ <entry key="project.open.time.18" value="2" />
33
+ <entry key="project.open.time.22" value="1" />
23
34
  <entry key="project.open.time.3" value="1" />
24
- <entry key="project.open.time.5" value="1" />
25
- <entry key="project.opened" value="3" />
35
+ <entry key="project.open.time.31" value="1" />
36
+ <entry key="project.open.time.34" value="1" />
37
+ <entry key="project.open.time.4" value="5" />
38
+ <entry key="project.open.time.5" value="5" />
39
+ <entry key="project.open.time.6" value="4" />
40
+ <entry key="project.open.time.7" value="1" />
41
+ <entry key="project.open.time.9" value="1" />
42
+ <entry key="project.opened" value="28" />
26
43
  </counts>
27
44
  </usages-collector>
28
45
  <usages-collector id="statistics.js.language.service.starts">
29
46
  <counts>
30
- <entry key="TypeScriptServerServiceImpl" value="3" />
47
+ <entry key="TypeScriptServerServiceImpl" value="26" />
31
48
  </counts>
32
49
  </usages-collector>
33
50
  <usages-collector id="statistics.file.extensions.open">
34
51
  <counts>
35
- <entry key="js" value="3" />
36
- <entry key="json" value="1" />
37
- <entry key="lock" value="1" />
38
- <entry key="ts" value="4" />
52
+ <entry key="html" value="2" />
53
+ <entry key="js" value="95" />
54
+ <entry key="json" value="17" />
55
+ <entry key="jsx" value="2" />
56
+ <entry key="lock" value="8" />
57
+ <entry key="md" value="20" />
58
+ <entry key="sre" value="1" />
59
+ <entry key="ts" value="228" />
60
+ <entry key="tsx" value="11" />
39
61
  </counts>
40
62
  </usages-collector>
41
63
  <usages-collector id="statistics.file.types.open">
42
64
  <counts>
43
- <entry key="JSON" value="1" />
44
- <entry key="JavaScript" value="3" />
45
- <entry key="TypeScript" value="4" />
46
- <entry key="yarn.lock" value="1" />
65
+ <entry key="HTML" value="2" />
66
+ <entry key="JSON" value="17" />
67
+ <entry key="JSX Harmony" value="2" />
68
+ <entry key="JavaScript" value="96" />
69
+ <entry key="Markdown" value="20" />
70
+ <entry key="PLAIN_TEXT" value="1" />
71
+ <entry key="TypeScript" value="228" />
72
+ <entry key="TypeScript JSX" value="11" />
73
+ <entry key="yarn.lock" value="7" />
47
74
  </counts>
48
75
  </usages-collector>
49
76
  <usages-collector id="statistics.file.extensions.edit">
50
77
  <counts>
51
- <entry key="js" value="5" />
52
- <entry key="json" value="3" />
53
- <entry key="ts" value="100" />
78
+ <entry key="js" value="2424" />
79
+ <entry key="json" value="10" />
80
+ <entry key="md" value="1879" />
81
+ <entry key="ts" value="19552" />
82
+ <entry key="tsx" value="205" />
54
83
  </counts>
55
84
  </usages-collector>
56
85
  <usages-collector id="statistics.file.types.edit">
57
86
  <counts>
58
- <entry key="JSON" value="3" />
59
- <entry key="JavaScript" value="5" />
60
- <entry key="TypeScript" value="100" />
87
+ <entry key="HTML" value="65" />
88
+ <entry key="JSON" value="10" />
89
+ <entry key="JavaScript" value="2439" />
90
+ <entry key="Markdown" value="1799" />
91
+ <entry key="TypeScript" value="19552" />
92
+ <entry key="TypeScript JSX" value="205" />
61
93
  </counts>
62
94
  </usages-collector>
63
95
  </session>
64
96
  </component>
65
97
  <component name="FileEditorManager">
66
- <splitter split-orientation="horizontal" split-proportion="0.3429719">
98
+ <splitter split-orientation="horizontal" split-proportion="0.5365854">
67
99
  <split-first>
68
100
  <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
69
101
  <file pinned="false" current-in-tab="true">
102
+ <entry file="file://$PROJECT_DIR$/package.json">
103
+ <provider selected="true" editor-type-id="text-editor">
104
+ <state relative-caret-position="30">
105
+ <caret line="2" column="20" selection-start-line="2" selection-start-column="20" selection-end-line="2" selection-end-column="20" />
106
+ </state>
107
+ </provider>
108
+ </entry>
109
+ </file>
110
+ <file pinned="false" current-in-tab="false">
111
+ <entry file="file://$PROJECT_DIR$/yarn.lock">
112
+ <provider selected="true" editor-type-id="text-editor">
113
+ <state relative-caret-position="175">
114
+ <caret line="1804" selection-start-line="1804" selection-end-line="1804" />
115
+ </state>
116
+ </provider>
117
+ </entry>
118
+ </file>
119
+ <file pinned="false" current-in-tab="false">
120
+ <entry file="file://$PROJECT_DIR$/src/markdown/common/consts.ts">
121
+ <provider selected="true" editor-type-id="text-editor">
122
+ <state relative-caret-position="270">
123
+ <caret line="18" column="87" selection-start-line="18" selection-start-column="87" selection-end-line="18" selection-end-column="87" />
124
+ </state>
125
+ </provider>
126
+ </entry>
127
+ </file>
128
+ <file pinned="false" current-in-tab="false">
70
129
  <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
71
130
  <provider selected="true" editor-type-id="text-editor">
72
- <state relative-caret-position="285">
73
- <caret line="309" column="29" selection-start-line="309" selection-start-column="29" selection-end-line="309" selection-end-column="29" />
131
+ <state relative-caret-position="12660">
132
+ <caret line="846" column="76" selection-start-line="846" selection-start-column="62" selection-end-line="846" selection-end-column="76" />
74
133
  <folding>
75
134
  <element signature="e#0#81#0" expanded="true" />
76
135
  </folding>
@@ -79,10 +138,33 @@
79
138
  </entry>
80
139
  </file>
81
140
  <file pinned="false" current-in-tab="false">
82
- <entry file="file://$PROJECT_DIR$/src/markdown/rules.ts">
141
+ <entry file="file://$PROJECT_DIR$/tests/_sepatation_span.js">
142
+ <provider selected="true" editor-type-id="text-editor">
143
+ <state relative-caret-position="270">
144
+ <caret line="18" column="29" selection-start-line="18" selection-start-column="29" selection-end-line="18" selection-end-column="29" />
145
+ </state>
146
+ </provider>
147
+ </entry>
148
+ </file>
149
+ <file pinned="false" current-in-tab="false">
150
+ <entry file="file://$PROJECT_DIR$/tests/_data/_sepatation_span/_data.js">
83
151
  <provider selected="true" editor-type-id="text-editor">
84
- <state relative-caret-position="405">
85
- <caret line="28" column="3" selection-start-line="28" selection-start-column="3" selection-end-line="28" selection-end-column="3" />
152
+ <state relative-caret-position="79">
153
+ <caret line="27" column="22" selection-start-line="27" selection-start-column="22" selection-end-line="27" selection-end-column="39" />
154
+ </state>
155
+ </provider>
156
+ </entry>
157
+ </file>
158
+ <file pinned="false" current-in-tab="false">
159
+ <entry file="file://$PROJECT_DIR$/src/mathjax/my-BaseMappings.ts">
160
+ <provider selected="true" editor-type-id="text-editor" />
161
+ </entry>
162
+ </file>
163
+ <file pinned="false" current-in-tab="false">
164
+ <entry file="file://$PROJECT_DIR$/src/mathjax/mathJaxConfig.ts">
165
+ <provider selected="true" editor-type-id="text-editor">
166
+ <state relative-caret-position="45">
167
+ <caret line="3" column="56" selection-start-line="3" selection-start-column="56" selection-end-line="3" selection-end-column="56" />
86
168
  </state>
87
169
  </provider>
88
170
  </entry>
@@ -92,21 +174,21 @@
92
174
  <split-second>
93
175
  <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
94
176
  <file pinned="false" current-in-tab="false">
95
- <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
177
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginSeparateForBlock.ts">
96
178
  <provider selected="true" editor-type-id="text-editor">
97
- <state relative-caret-position="75">
98
- <caret line="6" column="25" selection-start-line="6" selection-start-column="25" selection-end-line="6" selection-end-column="25" />
179
+ <state>
99
180
  <folding>
100
- <element signature="e#0#81#0" expanded="true" />
181
+ <element signature="e#0#41#0" expanded="true" />
101
182
  </folding>
102
183
  </state>
103
184
  </provider>
104
185
  </entry>
105
186
  </file>
106
- <file pinned="false" current-in-tab="false">
187
+ <file pinned="false" current-in-tab="true">
107
188
  <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginTableTabular.ts">
108
189
  <provider selected="true" editor-type-id="text-editor">
109
- <state>
190
+ <state relative-caret-position="210">
191
+ <caret line="14" column="23" selection-start-line="14" selection-start-column="23" selection-end-line="14" selection-end-column="23" />
110
192
  <folding>
111
193
  <element signature="e#0#41#0" expanded="true" />
112
194
  </folding>
@@ -115,29 +197,62 @@
115
197
  </entry>
116
198
  </file>
117
199
  <file pinned="false" current-in-tab="false">
118
- <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts">
200
+ <entry file="file://$PROJECT_DIR$/tests/_sanitize.js">
201
+ <provider selected="true" editor-type-id="text-editor">
202
+ <state relative-caret-position="285">
203
+ <caret line="19" selection-start-line="19" selection-end-line="19" />
204
+ </state>
205
+ </provider>
206
+ </entry>
207
+ </file>
208
+ <file pinned="false" current-in-tab="false">
209
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginAnchor.ts">
119
210
  <provider selected="true" editor-type-id="text-editor">
120
- <state relative-caret-position="44">
121
- <caret line="138" column="20" selection-start-line="138" selection-start-column="20" selection-end-line="138" selection-end-column="20" />
211
+ <state>
122
212
  <folding>
123
- <element signature="e#0#47#0" expanded="true" />
213
+ <element signature="e#0#59#0" expanded="true" />
124
214
  </folding>
125
215
  </state>
126
216
  </provider>
127
217
  </entry>
128
218
  </file>
129
219
  <file pinned="false" current-in-tab="false">
130
- <entry file="file://$PROJECT_DIR$/yarn.lock">
220
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginCollapsible.ts">
221
+ <provider selected="true" editor-type-id="text-editor" />
222
+ </entry>
223
+ </file>
224
+ <file pinned="false" current-in-tab="false">
225
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginConfigured.ts">
131
226
  <provider selected="true" editor-type-id="text-editor">
132
- <state relative-caret-position="-2117" />
227
+ <state>
228
+ <folding>
229
+ <element signature="e#0#42#0" expanded="true" />
230
+ </folding>
231
+ </state>
133
232
  </provider>
134
233
  </entry>
135
234
  </file>
136
- <file pinned="false" current-in-tab="true">
137
- <entry file="file://$PROJECT_DIR$/package.json">
235
+ <file pinned="false" current-in-tab="false">
236
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginLists.ts">
138
237
  <provider selected="true" editor-type-id="text-editor">
139
- <state relative-caret-position="30">
140
- <caret line="2" column="20" selection-start-line="2" selection-start-column="20" selection-end-line="2" selection-end-column="20" />
238
+ <state>
239
+ <folding>
240
+ <element signature="e#0#41#0" expanded="true" />
241
+ </folding>
242
+ </state>
243
+ </provider>
244
+ </entry>
245
+ </file>
246
+ <file pinned="false" current-in-tab="false">
247
+ <entry file="file://$PROJECT_DIR$/tests/_data/_sanitizeHtml/_data.js">
248
+ <provider selected="true" editor-type-id="text-editor" />
249
+ </entry>
250
+ </file>
251
+ <file pinned="false" current-in-tab="false">
252
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-align.ts">
253
+ <provider selected="true" editor-type-id="text-editor">
254
+ <state relative-caret-position="885">
255
+ <caret line="61" column="33" selection-start-line="61" selection-start-column="33" selection-end-line="61" selection-end-column="33" />
141
256
  </state>
142
257
  </provider>
143
258
  </entry>
@@ -148,17 +263,70 @@
148
263
  </component>
149
264
  <component name="FindInProjectRecents">
150
265
  <findStrings>
151
- <find>StatePushDiv</find>
152
- <find>charCodeAt</find>
153
- <find>StatePushParagraphOpen</find>
154
- <find>abstractBlock</find>
155
- <find>Author</find>
156
- <find>getAbstractTemplate</find>
157
- <find>paragraph_open</find>
158
- <find>heading_open</find>
266
+ <find>state.line</find>
267
+ <find>separatingSpan</find>
268
+ <find>regex</find>
269
+ <find>lineText = state.src.slice(pos, max).trim();</find>
270
+ <find>renderInlineClass</find>
271
+ <find>classInline</find>
272
+ <find>err</find>
273
+ <find>reg</find>
274
+ <find>RegExpMatchArray</find>
275
+ <find>latexClass</find>
276
+ <find>inlineClass</find>
277
+ <find>openTagSpan</find>
278
+ <find>closeTagSpan</find>
279
+ <find>space</find>
280
+ <find>while</find>
281
+ <find>0x20</find>
282
+ <find>console</find>
283
+ <find>reSpan</find>
284
+ <find>resString</find>
285
+ <find>findEndMarker</find>
286
+ <find>nextPos</find>
287
+ <find>spanToClass</find>
288
+ <find>console.log</find>
289
+ <find>openTag</find>
290
+ <find>closeTag</find>
291
+ <find>\\</find>
292
+ <find>lineText</find>
293
+ <find>...</find>
294
+ <find>..</find>
295
+ <find>postcss</find>
159
296
  </findStrings>
297
+ <replaceStrings>
298
+ <replace>MJSimple</replace>
299
+ <replace>MJ</replace>
300
+ <replace>\</replace>
301
+ </replaceStrings>
160
302
  <dirStrings>
303
+ <dir>$PROJECT_DIR$/node_modules/mathjax-full/components</dir>
304
+ <dir>$PROJECT_DIR$/node_modules</dir>
305
+ <dir>$PROJECT_DIR$/src/mathjax/serialized-ascii</dir>
306
+ <dir>$PROJECT_DIR$/tests/_data/_ascii</dir>
307
+ <dir>$PROJECT_DIR$/node_modules/speech-rule-engine</dir>
308
+ <dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/a11y</dir>
309
+ <dir>$PROJECT_DIR$/node_modules/mathjax-full/js</dir>
310
+ <dir>$PROJECT_DIR$/tests/_data</dir>
311
+ <dir>$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular</dir>
312
+ <dir>$PROJECT_DIR$/src/markdown/md-block-rule</dir>
313
+ <dir>$PROJECT_DIR$/node_modules/speech-rule-engine/js</dir>
314
+ <dir>$PROJECT_DIR$/tests</dir>
315
+ <dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/ui/menu</dir>
316
+ <dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/ui</dir>
317
+ <dir>$PROJECT_DIR$/node_modules/mathjax-full</dir>
318
+ <dir>$PROJECT_DIR$/node_modules/mathjax-full/ts</dir>
319
+ <dir>$PROJECT_DIR$/src/mathpix-markdown-model</dir>
320
+ <dir>$PROJECT_DIR$/src/styles</dir>
321
+ <dir>$PROJECT_DIR$/src/mathjax/contex-menu</dir>
322
+ <dir>$PROJECT_DIR$/src/contex-menu</dir>
323
+ <dir>$PROJECT_DIR$/src</dir>
324
+ <dir>$PROJECT_DIR$</dir>
325
+ <dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
326
+ <dir>$PROJECT_DIR$/src/mathjax</dir>
161
327
  <dir>$PROJECT_DIR$/src/markdown</dir>
328
+ <dir>$PROJECT_DIR$/node_modules/postcss/lib</dir>
329
+ <dir>$PROJECT_DIR$/node_modules/postcss</dir>
162
330
  </dirStrings>
163
331
  </component>
164
332
  <component name="Git.Settings">
@@ -167,9 +335,56 @@
167
335
  <component name="IdeDocumentHistory">
168
336
  <option name="CHANGED_PATHS">
169
337
  <list>
338
+ <option value="$PROJECT_DIR$/src/mathjax/contex-menu/menu/index.ts" />
339
+ <option value="$PROJECT_DIR$/src/mathjax/contex-menu/helper.ts" />
340
+ <option value="$PROJECT_DIR$/src/mathjax/contex-menu/consts.ts" />
341
+ <option value="$PROJECT_DIR$/src/mathjax/contex-menu/menu/menu-item.ts" />
342
+ <option value="$PROJECT_DIR$/src/mathjax/contex-menu/index.ts" />
343
+ <option value="$PROJECT_DIR$/src/mathjax/contex-menu/test.ts" />
344
+ <option value="$PROJECT_DIR$/src/mathjax/contex-menu/menu/styles.ts" />
345
+ <option value="$PROJECT_DIR$/src/mathjax/contex-menu/styles.ts" />
346
+ <option value="$PROJECT_DIR$/src/contex-menu/consts.ts" />
347
+ <option value="$PROJECT_DIR$/src/contex-menu/helper.ts" />
348
+ <option value="$PROJECT_DIR$/src/contex-menu/menu/styles.ts" />
349
+ <option value="$PROJECT_DIR$/src/contex-menu/menu/menu-items.ts" />
350
+ <option value="$PROJECT_DIR$/src/sre/index.ts" />
351
+ <option value="$PROJECT_DIR$/src/helpers/parse-mmd-element.ts" />
352
+ <option value="$PROJECT_DIR$/src/contex-menu/menu/menu-item-actions.ts" />
353
+ <option value="$PROJECT_DIR$/src/contex-menu/menu/menu-item.ts" />
354
+ <option value="$PROJECT_DIR$/src/components/mathpix-markdown/index.tsx" />
355
+ <option value="$PROJECT_DIR$/src/components/mathpix-loader/index.tsx" />
356
+ <option value="$PROJECT_DIR$/src/components/mathpix-loader-sre/index.tsx" />
357
+ <option value="$PROJECT_DIR$/src/components/mathpix-loader-accessibility/index.tsx" />
358
+ <option value="$PROJECT_DIR$/src/sre/sre-browser.ts" />
359
+ <option value="$PROJECT_DIR$/src/index.tsx" />
360
+ <option value="$PROJECT_DIR$/examples/react-app/use-components/src/App.js" />
361
+ <option value="$PROJECT_DIR$/src/context-menu.tsx" />
362
+ <option value="$PROJECT_DIR$/webpack.config.js" />
363
+ <option value="$PROJECT_DIR$/src/mathpix-markdown-model/index.ts" />
364
+ <option value="$PROJECT_DIR$/src/contex-menu/index.ts" />
365
+ <option value="$PROJECT_DIR$/src/contex-menu/styles.ts" />
366
+ <option value="$PROJECT_DIR$/src/contex-menu/menu/consts.ts" />
367
+ <option value="$PROJECT_DIR$/src/contex-menu/menu/interfaces.ts" />
368
+ <option value="$PROJECT_DIR$/src/contex-menu/menu/helper.ts" />
369
+ <option value="$PROJECT_DIR$/src/contex-menu/menu/index.ts" />
370
+ <option value="$PROJECT_DIR$/examples/app.js" />
371
+ <option value="$PROJECT_DIR$/README.md" />
372
+ <option value="$PROJECT_DIR$/yarn1.lock" />
373
+ <option value="$PROJECT_DIR$/yarn.lock" />
374
+ <option value="$PROJECT_DIR$/src/test.md" />
375
+ <option value="$PROJECT_DIR$/src/mathjax/utils.ts" />
376
+ <option value="$PROJECT_DIR$/src/mathjax/mathJaxConfig.ts" />
377
+ <option value="$PROJECT_DIR$/src/helpers/replace-span-to-class.ts" />
378
+ <option value="$PROJECT_DIR$/examples/test1.md" />
379
+ <option value="$PROJECT_DIR$/src/mathjax/index.ts" />
380
+ <option value="$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" />
170
381
  <option value="$PROJECT_DIR$/src/markdown/mdPluginText.ts" />
171
- <option value="$PROJECT_DIR$/tests/_data/_pluginText/_data.js" />
172
- <option value="$PROJECT_DIR$/es5/index.js" />
382
+ <option value="$PROJECT_DIR$/examples/test.md" />
383
+ <option value="$PROJECT_DIR$/tests/_data/_sepatation_span/_data.js" />
384
+ <option value="$PROJECT_DIR$/examples/tests-md/test2.md" />
385
+ <option value="$PROJECT_DIR$/examples/tests-md/test1.md" />
386
+ <option value="$PROJECT_DIR$/tests/_sepatation_span.js" />
387
+ <option value="$PROJECT_DIR$/src/markdown/common/consts.ts" />
173
388
  <option value="$PROJECT_DIR$/package.json" />
174
389
  </list>
175
390
  </option>
@@ -184,6 +399,7 @@
184
399
  </component>
185
400
  <component name="NodeModulesDirectoryManager">
186
401
  <handled-path value="$PROJECT_DIR$/examples/mathpix-markdown-it-node-examples/node_modules" />
402
+ <handled-path value="$PROJECT_DIR$/examples/react-app/use-components/node_modules" />
187
403
  <handled-path value="$PROJECT_DIR$/node_modules" />
188
404
  </component>
189
405
  <component name="NodePackageJsonFileManager">
@@ -198,7 +414,7 @@
198
414
  </packageJsonPaths>
199
415
  </component>
200
416
  <component name="ProjectFrameBounds">
201
- <option name="x" value="18" />
417
+ <option name="x" value="66" />
202
418
  <option name="y" value="23" />
203
419
  <option name="width" value="1570" />
204
420
  <option name="height" value="976" />
@@ -216,11 +432,6 @@
216
432
  <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
217
433
  <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
218
434
  </path>
219
- <path>
220
- <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
221
- <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
222
- <item name="es5" type="462c0819:PsiDirectoryNode" />
223
- </path>
224
435
  </expand>
225
436
  <select />
226
437
  </subPane>
@@ -231,10 +442,21 @@
231
442
  <component name="PropertiesComponent">
232
443
  <property name="WebServerToolWindowFactoryState" value="false" />
233
444
  <property name="last_opened_file_path" value="$PROJECT_DIR$" />
445
+ <property name="nodejs.mocha.mocha_node_package_dir" value="$PROJECT_DIR$/node_modules/mocha" />
234
446
  <property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
235
447
  <property name="nodejs_npm_path_reset_for_default_project" value="true" />
236
448
  <property name="nodejs_package_manager_path" value="yarn" />
237
449
  <property name="ts.external.directory.path" value="$PROJECT_DIR$/node_modules/typescript/lib" />
450
+ <property name="typescript-compiler-editor-notification" value="false" />
451
+ </component>
452
+ <component name="RecentsManager">
453
+ <key name="MoveFile.RECENT_KEYS">
454
+ <recent name="$PROJECT_DIR$/examples/tests-md" />
455
+ <recent name="$PROJECT_DIR$/src/contex-menu" />
456
+ <recent name="$PROJECT_DIR$/src/contex-menu/menu" />
457
+ <recent name="$PROJECT_DIR$/src" />
458
+ <recent name="$PROJECT_DIR$/src/mathjax/contex-menu" />
459
+ </key>
238
460
  </component>
239
461
  <component name="RunDashboard">
240
462
  <option name="ruleStates">
@@ -248,6 +470,16 @@
248
470
  </list>
249
471
  </option>
250
472
  </component>
473
+ <component name="RunManager">
474
+ <configuration name="app.js" type="NodeJSConfigurationType" factoryName="Node.js" temporary="true" nameIsGenerated="true" path-to-js-file="app.js" working-dir="$PROJECT_DIR$/examples">
475
+ <method v="2" />
476
+ </configuration>
477
+ <recent_temporary>
478
+ <list>
479
+ <item itemvalue="Node.js.app.js" />
480
+ </list>
481
+ </recent_temporary>
482
+ </component>
251
483
  <component name="SvnConfiguration">
252
484
  <configuration />
253
485
  </component>
@@ -260,17 +492,42 @@
260
492
  <updated>1646651423568</updated>
261
493
  <workItem from="1646651425529" duration="2777000" />
262
494
  <workItem from="1649846503007" duration="210000" />
263
- <workItem from="1649847003260" duration="827000" />
495
+ <workItem from="1649847003260" duration="1032000" />
496
+ <workItem from="1650040051545" duration="58358000" />
497
+ <workItem from="1650417423236" duration="11126000" />
498
+ <workItem from="1650449753717" duration="38085000" />
499
+ <workItem from="1650536879177" duration="3558000" />
500
+ <workItem from="1650568766879" duration="43739000" />
501
+ <workItem from="1650885815631" duration="12301000" />
502
+ <workItem from="1650952117264" duration="694000" />
503
+ <workItem from="1650983270279" duration="13078000" />
504
+ <workItem from="1651026782375" duration="23208000" />
505
+ <workItem from="1651059974870" duration="1898000" />
506
+ <workItem from="1651065813973" duration="7031000" />
507
+ <workItem from="1651124080399" duration="46035000" />
508
+ <workItem from="1651478407073" duration="16916000" />
509
+ <workItem from="1651561276920" duration="2217000" />
510
+ <workItem from="1651565369421" duration="94000" />
511
+ <workItem from="1651567833529" duration="4645000" />
512
+ <workItem from="1651581857517" duration="5604000" />
513
+ <workItem from="1651657924237" duration="2979000" />
514
+ <workItem from="1651664416957" duration="1489000" />
515
+ <workItem from="1652079692089" duration="15037000" />
516
+ <workItem from="1652099698496" duration="23735000" />
517
+ <workItem from="1652175125565" duration="18000" />
518
+ <workItem from="1652175421066" duration="327000" />
519
+ <workItem from="1652254324189" duration="42000" />
520
+ <workItem from="1652265539611" duration="6048000" />
264
521
  </task>
265
522
  <servers />
266
523
  </component>
267
524
  <component name="TimeTrackingManager">
268
- <option name="totallyTimeSpent" value="3814000" />
525
+ <option name="totallyTimeSpent" value="342281000" />
269
526
  </component>
270
527
  <component name="ToolWindowManager">
271
- <frame x="18" y="23" width="1570" height="976" extended-state="0" />
528
+ <frame x="66" y="23" width="1570" height="976" extended-state="0" />
272
529
  <layout>
273
- <window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.19625565" />
530
+ <window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.17947063" />
274
531
  <window_info id="Structure" order="1" side_tool="true" weight="0.25" />
275
532
  <window_info id="npm" order="2" side_tool="true" />
276
533
  <window_info id="DB Browser" order="3" />
@@ -280,7 +537,7 @@
280
537
  <window_info anchor="bottom" id="Message" order="0" />
281
538
  <window_info anchor="bottom" id="Find" order="1" />
282
539
  <window_info anchor="bottom" id="Run" order="2" />
283
- <window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
540
+ <window_info anchor="bottom" id="Debug" order="3" weight="0.41968325" />
284
541
  <window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
285
542
  <window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
286
543
  <window_info anchor="bottom" id="TODO" order="6" />
@@ -289,7 +546,7 @@
289
546
  <window_info anchor="bottom" id="Version Control" order="9" show_stripe_button="false" />
290
547
  <window_info anchor="bottom" id="DB Execution Console" order="10" />
291
548
  <window_info anchor="bottom" id="TypeScript" order="11" />
292
- <window_info active="true" anchor="bottom" id="Terminal" order="12" visible="true" weight="0.550905" />
549
+ <window_info active="true" anchor="bottom" id="Terminal" order="12" visible="true" weight="0.4852941" />
293
550
  <window_info anchor="bottom" id="Event Log" order="13" side_tool="true" />
294
551
  <window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
295
552
  <window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
@@ -302,24 +559,230 @@
302
559
  <component name="VcsContentAnnotationSettings">
303
560
  <option name="myLimit" value="2678400000" />
304
561
  </component>
562
+ <component name="XDebuggerManager">
563
+ <breakpoint-manager>
564
+ <breakpoints>
565
+ <line-breakpoint enabled="true" type="javascript">
566
+ <url>file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts</url>
567
+ <line>489</line>
568
+ <option name="timeStamp" value="15" />
569
+ </line-breakpoint>
570
+ <line-breakpoint enabled="true" type="javascript">
571
+ <url>file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts</url>
572
+ <line>352</line>
573
+ <option name="timeStamp" value="16" />
574
+ </line-breakpoint>
575
+ <line-breakpoint enabled="true" type="javascript">
576
+ <url>file://$PROJECT_DIR$/src/contex-menu/menu/helper.ts</url>
577
+ <line>54</line>
578
+ <option name="timeStamp" value="17" />
579
+ </line-breakpoint>
580
+ </breakpoints>
581
+ </breakpoint-manager>
582
+ </component>
305
583
  <component name="editorHistoryManager">
306
- <entry file="file://$PROJECT_DIR$/tests/_pluginText.js" />
307
- <entry file="file://$PROJECT_DIR$/tests/_data/_pluginText/_data.js" />
584
+ <entry file="file://$PROJECT_DIR$/src/context-menu.tsx">
585
+ <provider selected="true" editor-type-id="text-editor">
586
+ <state relative-caret-position="225">
587
+ <caret line="15" selection-start-line="15" selection-end-line="15" />
588
+ </state>
589
+ </provider>
590
+ </entry>
591
+ <entry file="file://$PROJECT_DIR$/lib/context-menu.js">
592
+ <provider selected="true" editor-type-id="text-editor">
593
+ <state relative-caret-position="135">
594
+ <caret line="9" column="21" selection-start-line="9" selection-start-column="21" selection-end-line="9" selection-end-column="21" />
595
+ </state>
596
+ </provider>
597
+ </entry>
598
+ <entry file="file://$PROJECT_DIR$/es5/context-menu.js">
599
+ <provider selected="true" editor-type-id="text-editor">
600
+ <state>
601
+ <caret column="55" selection-end-column="16591" />
602
+ </state>
603
+ </provider>
604
+ </entry>
605
+ <entry file="file://$PROJECT_DIR$/src/contex-menu/menu/helper.ts">
606
+ <provider selected="true" editor-type-id="text-editor">
607
+ <state relative-caret-position="1080">
608
+ <caret line="81" column="69" selection-start-line="81" selection-start-column="69" selection-end-line="81" selection-end-column="69" />
609
+ <folding>
610
+ <element signature="e#0#170#0" expanded="true" />
611
+ </folding>
612
+ </state>
613
+ </provider>
614
+ </entry>
615
+ <entry file="file://$PROJECT_DIR$/src/contex-menu/menu/index.ts">
616
+ <provider selected="true" editor-type-id="text-editor">
617
+ <state relative-caret-position="900">
618
+ <caret line="64" column="38" selection-start-line="64" selection-start-column="38" selection-end-line="64" selection-end-column="38" />
619
+ </state>
620
+ </provider>
621
+ </entry>
622
+ <entry file="file://$PROJECT_DIR$/examples/app.js">
623
+ <provider selected="true" editor-type-id="text-editor">
624
+ <state relative-caret-position="480">
625
+ <caret line="32" column="58" selection-start-line="32" selection-start-column="58" selection-end-line="32" selection-end-column="58" />
626
+ </state>
627
+ </provider>
628
+ </entry>
629
+ <entry file="file://$PROJECT_DIR$/src/contex-menu/menu/consts.ts">
630
+ <provider selected="true" editor-type-id="text-editor">
631
+ <state relative-caret-position="300">
632
+ <caret line="20" selection-start-line="20" selection-end-line="20" />
633
+ </state>
634
+ </provider>
635
+ </entry>
636
+ <entry file="file://$PROJECT_DIR$/src/contex-menu/menu/interfaces.ts">
637
+ <provider selected="true" editor-type-id="text-editor">
638
+ <state relative-caret-position="30">
639
+ <caret line="2" column="6" selection-start-line="2" selection-start-column="6" selection-end-line="2" selection-end-column="6" />
640
+ </state>
641
+ </provider>
642
+ </entry>
643
+ <entry file="file://$PROJECT_DIR$/src/contex-menu/styles.ts">
644
+ <provider selected="true" editor-type-id="text-editor">
645
+ <state>
646
+ <caret column="60" selection-start-column="38" selection-end-column="60" />
647
+ </state>
648
+ </provider>
649
+ </entry>
650
+ <entry file="file://$PROJECT_DIR$/src/contex-menu/index.ts">
651
+ <provider selected="true" editor-type-id="text-editor">
652
+ <state relative-caret-position="555">
653
+ <caret line="40" column="17" selection-start-line="40" selection-start-column="17" selection-end-line="40" selection-end-column="17" />
654
+ </state>
655
+ </provider>
656
+ </entry>
657
+ <entry file="file://$PROJECT_DIR$/package-lock.json" />
658
+ <entry file="file://$PROJECT_DIR$/yarn1.lock" />
308
659
  <entry file="file://$PROJECT_DIR$/es5/index.js">
660
+ <provider selected="true" editor-type-id="text-editor" />
661
+ </entry>
662
+ <entry file="file://$PROJECT_DIR$/README.md">
663
+ <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
664
+ <state split_layout="FIRST">
665
+ <first_editor relative-caret-position="9030">
666
+ <caret line="602" selection-start-line="602" selection-end-line="602" />
667
+ </first_editor>
668
+ <second_editor />
669
+ </state>
670
+ </provider>
671
+ </entry>
672
+ <entry file="file://$PROJECT_DIR$/examples/react-app/use-components/src/App.js">
309
673
  <provider selected="true" editor-type-id="text-editor">
310
- <state relative-caret-position="15">
311
- <caret line="1" column="9" lean-forward="true" selection-start-line="1" selection-start-column="9" selection-end-line="1" selection-end-column="9" />
674
+ <state relative-caret-position="180">
675
+ <caret line="18" column="21" selection-start-line="18" selection-start-column="21" selection-end-line="18" selection-end-column="21" />
312
676
  </state>
313
677
  </provider>
314
678
  </entry>
315
- <entry file="file://$PROJECT_DIR$/src/markdown/rules.ts">
679
+ <entry file="file://$PROJECT_DIR$/src/components/mathpix-loader/index.tsx">
316
680
  <provider selected="true" editor-type-id="text-editor">
317
- <state relative-caret-position="405">
318
- <caret line="28" column="3" selection-start-line="28" selection-start-column="3" selection-end-line="28" selection-end-column="3" />
681
+ <state relative-caret-position="285">
682
+ <caret line="20" selection-start-line="20" selection-end-line="20" />
319
683
  </state>
320
684
  </provider>
321
685
  </entry>
322
- <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginTableTabular.ts">
686
+ <entry file="file://$PROJECT_DIR$/src/index.tsx">
687
+ <provider selected="true" editor-type-id="text-editor">
688
+ <state relative-caret-position="195">
689
+ <caret line="13" column="15" selection-start-line="13" selection-start-column="15" selection-end-line="13" selection-end-column="15" />
690
+ </state>
691
+ </provider>
692
+ </entry>
693
+ <entry file="file://$PROJECT_DIR$/src/bundle.tsx">
694
+ <provider selected="true" editor-type-id="text-editor">
695
+ <state relative-caret-position="345">
696
+ <caret line="23" selection-end-line="23" />
697
+ </state>
698
+ </provider>
699
+ </entry>
700
+ <entry file="file://$PROJECT_DIR$/src/test.md" />
701
+ <entry file="file://$PROJECT_DIR$/node_modules/typescript/lib/lib.dom.d.ts">
702
+ <provider selected="true" editor-type-id="text-editor">
703
+ <state relative-caret-position="54435">
704
+ <caret line="3642" column="13" selection-start-line="3642" selection-start-column="13" selection-end-line="3642" selection-end-column="13" />
705
+ </state>
706
+ </provider>
707
+ </entry>
708
+ <entry file="file://$PROJECT_DIR$/webpack.config.js">
709
+ <provider selected="true" editor-type-id="text-editor">
710
+ <state relative-caret-position="150">
711
+ <caret line="10" column="12" selection-start-line="10" selection-start-column="12" selection-end-line="10" selection-end-column="12" />
712
+ </state>
713
+ </provider>
714
+ </entry>
715
+ <entry file="file://$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/src/index.js">
716
+ <provider selected="true" editor-type-id="text-editor" />
717
+ </entry>
718
+ <entry file="file://$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/src/App.jsx">
719
+ <provider selected="true" editor-type-id="text-editor" />
720
+ </entry>
721
+ <entry file="file://$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/src/form.jsx">
722
+ <provider selected="true" editor-type-id="text-editor" />
723
+ </entry>
724
+ <entry file="file://$PROJECT_DIR$/src/mathjax/utils.ts" />
725
+ <entry file="file://$PROJECT_DIR$/src/mathjax/index.ts">
726
+ <provider selected="true" editor-type-id="text-editor">
727
+ <state relative-caret-position="264">
728
+ <caret line="326" column="46" selection-start-line="326" selection-start-column="46" selection-end-line="326" selection-end-column="46" />
729
+ </state>
730
+ </provider>
731
+ </entry>
732
+ <entry file="file://$PROJECT_DIR$/examples/test1.md" />
733
+ <entry file="file://$PROJECT_DIR$/src/helpers/replace-span-to-class.ts" />
734
+ <entry file="file://$PROJECT_DIR$/examples/tests-md/test.md" />
735
+ <entry file="file://$PROJECT_DIR$/examples/tests-md/test2.md" />
736
+ <entry file="file://$PROJECT_DIR$/examples/tests-md/test1.md" />
737
+ <entry file="file://$PROJECT_DIR$/src/markdown/common/consts.ts">
738
+ <provider selected="true" editor-type-id="text-editor">
739
+ <state relative-caret-position="270">
740
+ <caret line="18" column="87" selection-start-line="18" selection-start-column="87" selection-end-line="18" selection-end-column="87" />
741
+ </state>
742
+ </provider>
743
+ </entry>
744
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
745
+ <provider selected="true" editor-type-id="text-editor">
746
+ <state relative-caret-position="12660">
747
+ <caret line="846" column="76" selection-start-line="846" selection-start-column="62" selection-end-line="846" selection-end-column="76" />
748
+ <folding>
749
+ <element signature="e#0#81#0" expanded="true" />
750
+ </folding>
751
+ </state>
752
+ </provider>
753
+ </entry>
754
+ <entry file="file://$PROJECT_DIR$/tests/_sepatation_span.js">
755
+ <provider selected="true" editor-type-id="text-editor">
756
+ <state relative-caret-position="270">
757
+ <caret line="18" column="29" selection-start-line="18" selection-start-column="29" selection-end-line="18" selection-end-column="29" />
758
+ </state>
759
+ </provider>
760
+ </entry>
761
+ <entry file="file://$PROJECT_DIR$/src/mathjax/my-BaseMappings.ts">
762
+ <provider selected="true" editor-type-id="text-editor" />
763
+ </entry>
764
+ <entry file="file://$PROJECT_DIR$/src/mathjax/mathJaxConfig.ts">
765
+ <provider selected="true" editor-type-id="text-editor">
766
+ <state relative-caret-position="45">
767
+ <caret line="3" column="56" selection-start-line="3" selection-start-column="56" selection-end-line="3" selection-end-column="56" />
768
+ </state>
769
+ </provider>
770
+ </entry>
771
+ <entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block/state_block.js">
772
+ <provider selected="true" editor-type-id="text-editor">
773
+ <state relative-caret-position="360">
774
+ <caret line="24" column="24" selection-start-line="24" selection-start-column="24" selection-end-line="24" selection-end-column="57" />
775
+ </state>
776
+ </provider>
777
+ </entry>
778
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts">
779
+ <provider selected="true" editor-type-id="text-editor">
780
+ <state relative-caret-position="75">
781
+ <caret line="5" column="24" selection-start-line="5" selection-start-column="24" selection-end-line="5" selection-end-column="24" />
782
+ </state>
783
+ </provider>
784
+ </entry>
785
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginSeparateForBlock.ts">
323
786
  <provider selected="true" editor-type-id="text-editor">
324
787
  <state>
325
788
  <folding>
@@ -328,29 +791,80 @@
328
791
  </state>
329
792
  </provider>
330
793
  </entry>
331
- <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts">
794
+ <entry file="file://$PROJECT_DIR$/tests/_sanitize.js">
795
+ <provider selected="true" editor-type-id="text-editor">
796
+ <state relative-caret-position="285">
797
+ <caret line="19" selection-start-line="19" selection-end-line="19" />
798
+ </state>
799
+ </provider>
800
+ </entry>
801
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginAnchor.ts">
332
802
  <provider selected="true" editor-type-id="text-editor">
333
- <state relative-caret-position="44">
334
- <caret line="138" column="20" selection-start-line="138" selection-start-column="20" selection-end-line="138" selection-end-column="20" />
803
+ <state>
335
804
  <folding>
336
- <element signature="e#0#47#0" expanded="true" />
805
+ <element signature="e#0#59#0" expanded="true" />
337
806
  </folding>
338
807
  </state>
339
808
  </provider>
340
809
  </entry>
341
- <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
810
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginCollapsible.ts">
811
+ <provider selected="true" editor-type-id="text-editor" />
812
+ </entry>
813
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginConfigured.ts">
342
814
  <provider selected="true" editor-type-id="text-editor">
343
- <state relative-caret-position="75">
344
- <caret line="6" column="25" selection-start-line="6" selection-start-column="25" selection-end-line="6" selection-end-column="25" />
815
+ <state>
345
816
  <folding>
346
- <element signature="e#0#81#0" expanded="true" />
817
+ <element signature="e#0#42#0" expanded="true" />
818
+ </folding>
819
+ </state>
820
+ </provider>
821
+ </entry>
822
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginLists.ts">
823
+ <provider selected="true" editor-type-id="text-editor">
824
+ <state>
825
+ <folding>
826
+ <element signature="e#0#41#0" expanded="true" />
827
+ </folding>
828
+ </state>
829
+ </provider>
830
+ </entry>
831
+ <entry file="file://$PROJECT_DIR$/tests/_data/_sanitizeHtml/_data.js">
832
+ <provider selected="true" editor-type-id="text-editor" />
833
+ </entry>
834
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-align.ts">
835
+ <provider selected="true" editor-type-id="text-editor">
836
+ <state relative-caret-position="885">
837
+ <caret line="61" column="33" selection-start-line="61" selection-start-column="33" selection-end-line="61" selection-end-column="33" />
838
+ </state>
839
+ </provider>
840
+ </entry>
841
+ <entry file="file://$PROJECT_DIR$/tests/_data/_sepatation_span/_data.js">
842
+ <provider selected="true" editor-type-id="text-editor">
843
+ <state relative-caret-position="79">
844
+ <caret line="27" column="22" selection-start-line="27" selection-start-column="22" selection-end-line="27" selection-end-column="39" />
845
+ </state>
846
+ </provider>
847
+ </entry>
848
+ <entry file="file://$PROJECT_DIR$/node_modules/postcss/lib/declaration.js">
849
+ <provider selected="true" editor-type-id="text-editor">
850
+ <state relative-caret-position="-794" />
851
+ </provider>
852
+ </entry>
853
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginTableTabular.ts">
854
+ <provider selected="true" editor-type-id="text-editor">
855
+ <state relative-caret-position="210">
856
+ <caret line="14" column="23" selection-start-line="14" selection-start-column="23" selection-end-line="14" selection-end-column="23" />
857
+ <folding>
858
+ <element signature="e#0#41#0" expanded="true" />
347
859
  </folding>
348
860
  </state>
349
861
  </provider>
350
862
  </entry>
351
863
  <entry file="file://$PROJECT_DIR$/yarn.lock">
352
864
  <provider selected="true" editor-type-id="text-editor">
353
- <state relative-caret-position="-2117" />
865
+ <state relative-caret-position="175">
866
+ <caret line="1804" selection-start-line="1804" selection-end-line="1804" />
867
+ </state>
354
868
  </provider>
355
869
  </entry>
356
870
  <entry file="file://$PROJECT_DIR$/package.json">