mathpix-markdown-it 1.0.99 → 1.2.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.
Files changed (99) hide show
  1. package/.idea/workspace.xml +637 -397
  2. package/es5/bundle.js +1 -1
  3. package/es5/index.js +1 -1
  4. package/lib/components/mathpix-markdown/index.js +4 -2
  5. package/lib/components/mathpix-markdown/index.js.map +1 -1
  6. package/lib/index.d.ts +3 -3
  7. package/lib/index.js +2 -1
  8. package/lib/index.js.map +1 -1
  9. package/lib/markdown/common/consts.d.ts +2 -0
  10. package/lib/markdown/common/consts.js +3 -1
  11. package/lib/markdown/common/consts.js.map +1 -1
  12. package/lib/markdown/common.d.ts +3 -0
  13. package/lib/markdown/common.js +2 -1
  14. package/lib/markdown/common.js.map +1 -1
  15. package/lib/markdown/highlight/common.d.ts +7 -0
  16. package/lib/markdown/highlight/common.js +202 -0
  17. package/lib/markdown/highlight/common.js.map +1 -0
  18. package/lib/markdown/highlight/highlight-math-token.d.ts +4 -0
  19. package/lib/markdown/highlight/highlight-math-token.js +263 -0
  20. package/lib/markdown/highlight/highlight-math-token.js.map +1 -0
  21. package/lib/markdown/highlight/render-rule-highlights.d.ts +5 -0
  22. package/lib/markdown/highlight/render-rule-highlights.js +175 -0
  23. package/lib/markdown/highlight/render-rule-highlights.js.map +1 -0
  24. package/lib/markdown/index.js +8 -2
  25. package/lib/markdown/index.js.map +1 -1
  26. package/lib/markdown/mathpix-markdown-plugins.js +112 -2
  27. package/lib/markdown/mathpix-markdown-plugins.js.map +1 -1
  28. package/lib/markdown/md-block-rule/begin-table.js +52 -1
  29. package/lib/markdown/md-block-rule/begin-table.js.map +1 -1
  30. package/lib/markdown/md-block-rule/begin-tabular/index.d.ts +1 -1
  31. package/lib/markdown/md-block-rule/begin-tabular/index.js +4 -2
  32. package/lib/markdown/md-block-rule/begin-tabular/index.js.map +1 -1
  33. package/lib/markdown/md-block-rule/helper.d.ts +1 -1
  34. package/lib/markdown/md-block-rule/helper.js +8 -1
  35. package/lib/markdown/md-block-rule/helper.js.map +1 -1
  36. package/lib/markdown/md-block-rule/lists/index.js +3 -0
  37. package/lib/markdown/md-block-rule/lists/index.js.map +1 -1
  38. package/lib/markdown/md-core-rules/set-positions.d.ts +1 -0
  39. package/lib/markdown/md-core-rules/set-positions.js +281 -0
  40. package/lib/markdown/md-core-rules/set-positions.js.map +1 -0
  41. package/lib/markdown/md-inline-rule/image.js +4 -0
  42. package/lib/markdown/md-inline-rule/image.js.map +1 -1
  43. package/lib/markdown/md-inline-rule/includegraphics.js +15 -2
  44. package/lib/markdown/md-inline-rule/includegraphics.js.map +1 -1
  45. package/lib/markdown/md-inline-rule/lists.js +6 -0
  46. package/lib/markdown/md-inline-rule/lists.js.map +1 -1
  47. package/lib/markdown/md-inline-rule/new-line-to-space.d.ts +2 -0
  48. package/lib/markdown/md-inline-rule/new-line-to-space.js +46 -0
  49. package/lib/markdown/md-inline-rule/new-line-to-space.js.map +1 -0
  50. package/lib/markdown/md-inline-rule/setcounter-section.js +6 -0
  51. package/lib/markdown/md-inline-rule/setcounter-section.js.map +1 -1
  52. package/lib/markdown/md-inline-rule/text-collapse.d.ts +1 -0
  53. package/lib/markdown/md-inline-rule/text-collapse.js +43 -0
  54. package/lib/markdown/md-inline-rule/text-collapse.js.map +1 -0
  55. package/lib/markdown/md-inline-rule/utils.d.ts +1 -0
  56. package/lib/markdown/md-inline-rule/utils.js +2 -1
  57. package/lib/markdown/md-inline-rule/utils.js.map +1 -1
  58. package/lib/markdown/md-renderer-rules/index.js +3 -1
  59. package/lib/markdown/md-renderer-rules/index.js.map +1 -1
  60. package/lib/markdown/md-renderer-rules/render-lists.js +7 -0
  61. package/lib/markdown/md-renderer-rules/render-lists.js.map +1 -1
  62. package/lib/markdown/md-renderer-rules/render-tabular.d.ts +1 -1
  63. package/lib/markdown/md-renderer-rules/render-tabular.js +29 -3
  64. package/lib/markdown/md-renderer-rules/render-tabular.js.map +1 -1
  65. package/lib/markdown/md-theorem/block-rule.js +80 -14
  66. package/lib/markdown/md-theorem/block-rule.js.map +1 -1
  67. package/lib/markdown/md-theorem/index.js +11 -1
  68. package/lib/markdown/md-theorem/index.js.map +1 -1
  69. package/lib/markdown/md-theorem/inline-rule.js +24 -0
  70. package/lib/markdown/md-theorem/inline-rule.js.map +1 -1
  71. package/lib/markdown/mdPluginAnchor.js +4 -2
  72. package/lib/markdown/mdPluginAnchor.js.map +1 -1
  73. package/lib/markdown/mdPluginConfigured.d.ts +1 -0
  74. package/lib/markdown/mdPluginConfigured.js +3 -1
  75. package/lib/markdown/mdPluginConfigured.js.map +1 -1
  76. package/lib/markdown/mdPluginRaw.js +50 -3
  77. package/lib/markdown/mdPluginRaw.js.map +1 -1
  78. package/lib/markdown/mdPluginText.js +224 -27
  79. package/lib/markdown/mdPluginText.js.map +1 -1
  80. package/lib/markdown/mdSetPositionsAndHighlight.d.ts +2 -0
  81. package/lib/markdown/mdSetPositionsAndHighlight.js +22 -0
  82. package/lib/markdown/mdSetPositionsAndHighlight.js.map +1 -0
  83. package/lib/markdown/utils.d.ts +3 -0
  84. package/lib/markdown/utils.js +292 -1
  85. package/lib/markdown/utils.js.map +1 -1
  86. package/lib/mathjax/index.d.ts +37 -2
  87. package/lib/mathjax/index.js +46 -14
  88. package/lib/mathjax/index.js.map +1 -1
  89. package/lib/mathjax/my-BaseMappings.js +7 -1
  90. package/lib/mathjax/my-BaseMappings.js.map +1 -1
  91. package/lib/mathpix-markdown-model/index.d.ts +12 -0
  92. package/lib/mathpix-markdown-model/index.js +4 -2
  93. package/lib/mathpix-markdown-model/index.js.map +1 -1
  94. package/lib/styles/index.js +1 -1
  95. package/lib/styles/index.js.map +1 -1
  96. package/lib/styles/styles-code.d.ts +1 -1
  97. package/lib/styles/styles-code.js +1 -1
  98. package/lib/styles/styles-code.js.map +1 -1
  99. package/package.json +1 -1
@@ -1,16 +1,13 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <project version="4">
3
3
  <component name="BookmarkManager">
4
- <bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" line="220" mnemonic="4" />
5
4
  <bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" line="38" mnemonic="5" />
6
- <bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" line="26" mnemonic="6" />
7
- <bookmark url="file://$PROJECT_DIR$/src/markdown/md-chemistry/smiles-drawer/src/Parser.ts" line="1782" mnemonic="8" />
8
- <bookmark url="file://$PROJECT_DIR$/src/markdown/md-chemistry/smiles-drawer/src/Parser.ts" line="351" mnemonic="3" />
9
- <bookmark url="file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts" line="186" mnemonic="7" />
10
- <bookmark url="file://$PROJECT_DIR$/src/markdown/rules.ts" line="55" mnemonic="9" />
11
- <bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" line="593" mnemonic="0" />
12
- <bookmark url="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts" line="319" mnemonic="1" />
13
- <bookmark url="file://$PROJECT_DIR$/src/mathjax/index.ts" line="253" mnemonic="2" />
5
+ <bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts" line="1349" mnemonic="3" />
6
+ <bookmark url="file://$PROJECT_DIR$/src/mathjax/index.ts" line="79" mnemonic="4" />
7
+ <bookmark url="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/output/svg.ts" line="303" mnemonic="0" />
8
+ <bookmark url="file://$PROJECT_DIR$/node_modules/mathjax-full/js/output/svg.js" line="111" mnemonic="9" />
9
+ <bookmark url="file://$PROJECT_DIR$/src/markdown/highlight/common.ts" line="8" mnemonic="1" />
10
+ <bookmark url="file://$PROJECT_DIR$/src/markdown/highlight/highlight-math-token.ts" line="81" mnemonic="2" />
14
11
  </component>
15
12
  <component name="ChangeListManager">
16
13
  <list default="true" id="57194d73-380e-4999-b7f4-281db5a1b6dc" name="Default Changelist" comment="Merge branch 'master' into dev/olga/218-Add-support-for-labels-and-references-for-sections&#10;&#10;# Conflicts:&#10;#&#9;es5/bundle.js&#10;#&#9;es5/index.js&#10;#&#9;lib/markdown/mdPluginRaw.js&#10;#&#9;lib/markdown/mdPluginRaw.js.map&#10;#&#9;lib/mathjax/index.d.ts&#10;#&#9;lib/mathjax/index.js&#10;#&#9;lib/mathjax/index.js.map&#10;#&#9;src/markdown/mdPluginRaw.ts&#10;#&#9;src/mathjax/index.ts" />
@@ -28,37 +25,37 @@
28
25
  <session id="1706553226">
29
26
  <usages-collector id="statistics.lifecycle.project">
30
27
  <counts>
31
- <entry key="project.closed" value="159" />
28
+ <entry key="project.closed" value="171" />
32
29
  <entry key="project.open.time.10" value="6" />
33
- <entry key="project.open.time.11" value="9" />
30
+ <entry key="project.open.time.11" value="12" />
34
31
  <entry key="project.open.time.12" value="5" />
35
- <entry key="project.open.time.13" value="13" />
36
- <entry key="project.open.time.14" value="3" />
37
- <entry key="project.open.time.15" value="1" />
38
- <entry key="project.open.time.17" value="1" />
32
+ <entry key="project.open.time.13" value="14" />
33
+ <entry key="project.open.time.14" value="4" />
34
+ <entry key="project.open.time.15" value="2" />
35
+ <entry key="project.open.time.17" value="2" />
39
36
  <entry key="project.open.time.18" value="3" />
40
37
  <entry key="project.open.time.19" value="1" />
41
38
  <entry key="project.open.time.2" value="9" />
42
39
  <entry key="project.open.time.20" value="3" />
43
40
  <entry key="project.open.time.22" value="4" />
44
- <entry key="project.open.time.3" value="34" />
41
+ <entry key="project.open.time.3" value="35" />
45
42
  <entry key="project.open.time.30" value="1" />
46
43
  <entry key="project.open.time.31" value="1" />
47
44
  <entry key="project.open.time.32" value="1" />
48
45
  <entry key="project.open.time.34" value="2" />
49
- <entry key="project.open.time.4" value="41" />
46
+ <entry key="project.open.time.4" value="46" />
50
47
  <entry key="project.open.time.48" value="1" />
51
- <entry key="project.open.time.5" value="18" />
52
- <entry key="project.open.time.6" value="12" />
48
+ <entry key="project.open.time.5" value="19" />
49
+ <entry key="project.open.time.6" value="13" />
53
50
  <entry key="project.open.time.7" value="6" />
54
51
  <entry key="project.open.time.8" value="2" />
55
52
  <entry key="project.open.time.9" value="2" />
56
- <entry key="project.opened" value="181" />
53
+ <entry key="project.opened" value="196" />
57
54
  </counts>
58
55
  </usages-collector>
59
56
  <usages-collector id="statistics.js.language.service.starts">
60
57
  <counts>
61
- <entry key="TypeScriptServerServiceImpl" value="173" />
58
+ <entry key="TypeScriptServerServiceImpl" value="188" />
62
59
  </counts>
63
60
  </usages-collector>
64
61
  <usages-collector id="statistics.file.extensions.open">
@@ -70,15 +67,15 @@
70
67
  <entry key="gif" value="1" />
71
68
  <entry key="gitignore" value="7" />
72
69
  <entry key="html" value="11" />
73
- <entry key="js" value="445" />
74
- <entry key="json" value="61" />
70
+ <entry key="js" value="481" />
71
+ <entry key="json" value="64" />
75
72
  <entry key="jsx" value="22" />
76
73
  <entry key="lock" value="11" />
77
- <entry key="md" value="43" />
74
+ <entry key="md" value="44" />
78
75
  <entry key="png" value="2" />
79
76
  <entry key="sre" value="1" />
80
- <entry key="ts" value="1084" />
81
- <entry key="tsx" value="39" />
77
+ <entry key="ts" value="1251" />
78
+ <entry key="tsx" value="51" />
82
79
  </counts>
83
80
  </usages-collector>
84
81
  <usages-collector id="statistics.file.types.open">
@@ -88,13 +85,13 @@
88
85
  <entry key="EJS" value="1" />
89
86
  <entry key="HTML" value="11" />
90
87
  <entry key="Image" value="3" />
91
- <entry key="JSON" value="58" />
88
+ <entry key="JSON" value="61" />
92
89
  <entry key="JSX Harmony" value="22" />
93
- <entry key="JavaScript" value="446" />
94
- <entry key="Markdown" value="43" />
90
+ <entry key="JavaScript" value="482" />
91
+ <entry key="Markdown" value="44" />
95
92
  <entry key="PLAIN_TEXT" value="8" />
96
- <entry key="TypeScript" value="1084" />
97
- <entry key="TypeScript JSX" value="39" />
93
+ <entry key="TypeScript" value="1251" />
94
+ <entry key="TypeScript JSX" value="51" />
98
95
  <entry key="tsconfig" value="4" />
99
96
  <entry key="yarn.lock" value="10" />
100
97
  </counts>
@@ -103,24 +100,24 @@
103
100
  <counts>
104
101
  <entry key="css" value="98" />
105
102
  <entry key="html" value="47" />
106
- <entry key="js" value="12472" />
107
- <entry key="json" value="77" />
103
+ <entry key="js" value="12956" />
104
+ <entry key="json" value="85" />
108
105
  <entry key="jsx" value="1587" />
109
106
  <entry key="md" value="2266" />
110
- <entry key="ts" value="95642" />
111
- <entry key="tsx" value="1069" />
107
+ <entry key="ts" value="111773" />
108
+ <entry key="tsx" value="1188" />
112
109
  </counts>
113
110
  </usages-collector>
114
111
  <usages-collector id="statistics.file.types.edit">
115
112
  <counts>
116
113
  <entry key="CSS" value="98" />
117
- <entry key="HTML" value="122" />
118
- <entry key="JSON" value="51" />
114
+ <entry key="HTML" value="123" />
115
+ <entry key="JSON" value="59" />
119
116
  <entry key="JSX Harmony" value="1587" />
120
- <entry key="JavaScript" value="12485" />
117
+ <entry key="JavaScript" value="12969" />
121
118
  <entry key="Markdown" value="2186" />
122
- <entry key="TypeScript" value="95634" />
123
- <entry key="TypeScript JSX" value="1069" />
119
+ <entry key="TypeScript" value="111764" />
120
+ <entry key="TypeScript JSX" value="1188" />
124
121
  <entry key="tsconfig" value="26" />
125
122
  </counts>
126
123
  </usages-collector>
@@ -130,103 +127,133 @@
130
127
  <favorites_list name="mathpix-markdown-it" />
131
128
  </component>
132
129
  <component name="FileEditorManager">
133
- <splitter split-orientation="horizontal" split-proportion="0.36550435">
130
+ <splitter split-orientation="horizontal" split-proportion="0.6557132">
134
131
  <split-first>
135
132
  <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
136
133
  <file pinned="false" current-in-tab="false">
137
- <entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts">
134
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/adaptors/lite/Element.d.ts">
138
135
  <provider selected="true" editor-type-id="text-editor">
139
- <state relative-caret-position="4545">
140
- <caret line="303" column="12" selection-start-line="303" selection-start-column="12" selection-end-line="303" selection-end-column="26" />
136
+ <state>
141
137
  <folding>
142
- <element signature="e#0#40#0" expanded="true" />
138
+ <element signature="e#0#51#0" expanded="true" />
143
139
  </folding>
144
140
  </state>
145
141
  </provider>
146
142
  </entry>
147
143
  </file>
148
144
  <file pinned="false" current-in-tab="false">
149
- <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts">
145
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/adaptors/liteAdaptor.ts">
150
146
  <provider selected="true" editor-type-id="text-editor">
151
- <state relative-caret-position="2820">
152
- <caret line="195" column="36" selection-start-line="195" selection-start-column="36" selection-end-line="195" selection-end-column="36" />
147
+ <state relative-caret-position="375">
148
+ <caret line="25" column="29" selection-start-line="25" selection-start-column="21" selection-end-line="25" selection-end-column="29" />
153
149
  </state>
154
150
  </provider>
155
151
  </entry>
156
152
  </file>
157
- <file pinned="false" current-in-tab="true">
158
- <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts">
153
+ <file pinned="false" current-in-tab="false">
154
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/output/svg.ts">
159
155
  <provider selected="true" editor-type-id="text-editor">
160
- <state relative-caret-position="210">
161
- <caret line="14" column="34" selection-start-line="14" selection-start-column="34" selection-end-line="14" selection-end-column="34" />
156
+ <state relative-caret-position="4545">
157
+ <caret line="303" column="18" selection-start-line="303" selection-start-column="18" selection-end-line="303" selection-end-column="29" />
162
158
  <folding>
163
- <element signature="e#0#40#0" expanded="true" />
159
+ <element signature="e#795#849#0" expanded="true" />
164
160
  </folding>
165
161
  </state>
166
162
  </provider>
167
163
  </entry>
168
164
  </file>
169
165
  <file pinned="false" current-in-tab="false">
170
- <entry file="file://$PROJECT_DIR$/tests/_data/_table-markdown/_data.js">
166
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/output/common/OutputJax.ts">
171
167
  <provider selected="true" editor-type-id="text-editor">
172
- <state relative-caret-position="13740">
173
- <caret line="916" column="6" selection-start-line="916" selection-start-column="6" selection-end-line="916" selection-end-column="6" />
168
+ <state relative-caret-position="7005">
169
+ <caret line="479" column="34" selection-start-line="479" selection-start-column="34" selection-end-line="479" selection-end-column="34" />
174
170
  </state>
175
171
  </provider>
176
172
  </entry>
177
173
  </file>
178
174
  <file pinned="false" current-in-tab="false">
179
- <entry file="file://$PROJECT_DIR$/tests/_tsv.js">
175
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
180
176
  <provider selected="true" editor-type-id="text-editor">
181
- <state relative-caret-position="3750">
182
- <caret line="250" selection-start-line="250" selection-end-line="250" />
177
+ <state relative-caret-position="20235">
178
+ <caret line="1349" selection-start-line="1349" selection-end-line="1349" />
179
+ <folding>
180
+ <element signature="e#147#220#0" expanded="true" />
181
+ </folding>
183
182
  </state>
184
183
  </provider>
185
184
  </entry>
186
185
  </file>
187
186
  <file pinned="false" current-in-tab="false">
188
- <entry file="file://$PROJECT_DIR$/tests/_tsv_with_array.js">
187
+ <entry file="file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts">
189
188
  <provider selected="true" editor-type-id="text-editor">
190
- <state relative-caret-position="885">
191
- <caret line="59" column="7" selection-start-line="59" selection-start-column="7" selection-end-line="59" selection-end-column="7" />
189
+ <state relative-caret-position="2265">
190
+ <caret line="165" column="38" selection-start-line="165" selection-start-column="38" selection-end-line="165" selection-end-column="38" />
192
191
  </state>
193
192
  </provider>
194
193
  </entry>
195
194
  </file>
196
- <file pinned="false" current-in-tab="false">
197
- <entry file="file://$PROJECT_DIR$/tests/_data/_tsv/_data.js">
198
- <provider selected="true" editor-type-id="text-editor" />
195
+ <file pinned="false" current-in-tab="true">
196
+ <entry file="file://$PROJECT_DIR$/tests/_highlights.js">
197
+ <provider selected="true" editor-type-id="text-editor">
198
+ <state relative-caret-position="285">
199
+ <caret line="19" column="66" selection-start-line="19" selection-start-column="66" selection-end-line="19" selection-end-column="66" />
200
+ </state>
201
+ </provider>
199
202
  </entry>
200
203
  </file>
201
204
  <file pinned="false" current-in-tab="false">
202
- <entry file="file://$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_include_sub_math.js">
205
+ <entry file="file://$PROJECT_DIR$/tests/_data/_highlights/_data.js">
203
206
  <provider selected="true" editor-type-id="text-editor">
204
- <state relative-caret-position="6045">
205
- <caret line="403" column="80" selection-start-line="403" selection-start-column="80" selection-end-line="403" selection-end-column="80" />
207
+ <state relative-caret-position="472">
208
+ <caret line="163" column="7" selection-start-line="163" selection-start-column="7" selection-end-line="163" selection-end-column="7" />
209
+ <folding>
210
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
211
+ <element signature="n#style#0;n#span#1;n#div#0;n#!!top" expanded="true" />
212
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
213
+ <element signature="n#style#0;n#span#0;n#code#0;n#div#0;n#!!top" expanded="true" />
214
+ <element signature="n#style#0;n#span#1;n#code#0;n#div#0;n#!!top" expanded="true" />
215
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
216
+ <element signature="n#style#0;n#span#1;n#div#0;n#!!top" expanded="true" />
217
+ <element signature="n#style#0;n#span#2;n#div#0;n#!!top" expanded="true" />
218
+ <element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#2;n#div#0;n#!!top" expanded="true" />
219
+ <element signature="n#style#0;n#span#3;n#div#0;n#!!top" expanded="true" />
220
+ <element signature="n#style#0;n#span#4;n#div#0;n#!!top" expanded="true" />
221
+ <element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#4;n#div#0;n#!!top" expanded="true" />
222
+ <element signature="n#style#0;n#span#5;n#div#0;n#!!top" expanded="true" />
223
+ <element signature="n#style#0;n#span#6;n#div#0;n#!!top" expanded="true" />
224
+ <element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#6;n#div#0;n#!!top" expanded="true" />
225
+ <element signature="n#style#0;n#span#7;n#div#0;n#!!top" expanded="true" />
226
+ <element signature="n#style#0;n#span#8;n#div#0;n#!!top" expanded="true" />
227
+ <element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#8;n#div#0;n#!!top" expanded="true" />
228
+ <element signature="n#style#0;n#span#9;n#div#0;n#!!top" expanded="true" />
229
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
230
+ <element signature="n#style#0;n#span#1;n#div#0;n#!!top" expanded="true" />
231
+ <element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#1;n#div#0;n#!!top" expanded="true" />
232
+ <element signature="n#style#0;n#span#2;n#div#0;n#!!top" expanded="true" />
233
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
234
+ <element signature="n#style#0;n#span#1;n#div#0;n#!!top" expanded="true" />
235
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
236
+ <element signature="n#style#0;n#span#1;n#div#0;n#!!top" expanded="true" />
237
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
238
+ </folding>
206
239
  </state>
207
240
  </provider>
208
241
  </entry>
209
242
  </file>
210
243
  <file pinned="false" current-in-tab="false">
211
- <entry file="file://$PROJECT_DIR$/README.md">
212
- <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
213
- <state split_layout="FIRST">
214
- <first_editor relative-caret-position="11580">
215
- <caret line="772" selection-start-line="772" selection-end-line="772" />
216
- </first_editor>
217
- <second_editor />
244
+ <entry file="file://$PROJECT_DIR$/src/markdown/highlight/render-rule-highlights.ts">
245
+ <provider selected="true" editor-type-id="text-editor">
246
+ <state relative-caret-position="1395">
247
+ <caret line="99" column="27" selection-start-line="99" selection-start-column="27" selection-end-line="99" selection-end-column="27" />
218
248
  </state>
219
249
  </provider>
220
250
  </entry>
221
251
  </file>
222
252
  <file pinned="false" current-in-tab="false">
223
- <entry file="file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts">
253
+ <entry file="file://$PROJECT_DIR$/src/markdown/highlight/common.ts">
224
254
  <provider selected="true" editor-type-id="text-editor">
225
- <state relative-caret-position="2685">
226
- <caret line="184" column="4" selection-start-line="184" selection-start-column="4" selection-end-line="184" selection-end-column="4" />
227
- <folding>
228
- <element signature="e#0#45#0" expanded="true" />
229
- </folding>
255
+ <state relative-caret-position="435">
256
+ <caret line="32" column="2" selection-start-line="32" selection-start-column="2" selection-end-line="32" selection-end-column="2" />
230
257
  </state>
231
258
  </provider>
232
259
  </entry>
@@ -235,98 +262,85 @@
235
262
  </split-first>
236
263
  <split-second>
237
264
  <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
238
- <file pinned="false" current-in-tab="false">
239
- <entry file="file://$PROJECT_DIR$/package.json">
240
- <provider selected="true" editor-type-id="text-editor">
241
- <state relative-caret-position="240">
242
- <caret line="16" column="13" selection-start-line="16" selection-start-column="13" selection-end-line="16" selection-end-column="13" />
243
- </state>
244
- </provider>
245
- </entry>
246
- </file>
247
265
  <file pinned="false" current-in-tab="true">
248
- <entry file="file://$PROJECT_DIR$/src/styles/styles-tabular.ts">
266
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-core-rules/set-positions.ts">
249
267
  <provider selected="true" editor-type-id="text-editor">
250
- <state relative-caret-position="536">
251
- <caret line="36" column="25" selection-start-line="36" selection-start-column="25" selection-end-line="36" selection-end-column="25" />
268
+ <state relative-caret-position="292">
269
+ <caret line="287" column="2" selection-start-line="287" selection-start-column="2" selection-end-line="287" selection-end-column="2" />
270
+ <folding>
271
+ <element signature="e#0#71#0" expanded="true" />
272
+ </folding>
252
273
  </state>
253
274
  </provider>
254
275
  </entry>
255
276
  </file>
256
277
  <file pinned="false" current-in-tab="false">
257
- <entry file="file://$PROJECT_DIR$/src/styles/styles-fonts.ts">
278
+ <entry file="file://$PROJECT_DIR$/tests/_image.js">
258
279
  <provider selected="true" editor-type-id="text-editor">
259
- <state relative-caret-position="90">
260
- <caret line="7" selection-start-line="7" selection-end-line="7" />
280
+ <state relative-caret-position="240">
281
+ <caret line="16" selection-start-line="16" selection-end-line="16" />
261
282
  </state>
262
283
  </provider>
263
284
  </entry>
264
285
  </file>
265
286
  <file pinned="false" current-in-tab="false">
266
- <entry file="file://$PROJECT_DIR$/src/styles/styles-code.ts">
267
- <provider selected="true" editor-type-id="text-editor">
268
- <state relative-caret-position="120">
269
- <caret line="8" column="6" selection-start-line="8" selection-start-column="6" selection-end-line="8" selection-end-column="11" />
270
- </state>
271
- </provider>
287
+ <entry file="file://$PROJECT_DIR$/tests/_data/_image/_data.js">
288
+ <provider selected="true" editor-type-id="text-editor" />
272
289
  </entry>
273
290
  </file>
274
291
  <file pinned="false" current-in-tab="false">
275
- <entry file="file://$PROJECT_DIR$/src/contex-menu/menu/menu-item.ts">
292
+ <entry file="file://$PROJECT_DIR$/src/index.tsx">
276
293
  <provider selected="true" editor-type-id="text-editor">
277
- <state relative-caret-position="495">
278
- <caret line="34" column="44" selection-start-line="34" selection-start-column="44" selection-end-line="34" selection-end-column="44" />
294
+ <state relative-caret-position="780">
295
+ <caret line="52" column="13" selection-start-line="52" selection-start-column="13" selection-end-line="52" selection-end-column="13" />
296
+ <folding>
297
+ <element signature="e#0#56#0" expanded="true" />
298
+ </folding>
279
299
  </state>
280
300
  </provider>
281
301
  </entry>
282
302
  </file>
283
303
  <file pinned="false" current-in-tab="false">
284
- <entry file="file://$PROJECT_DIR$/src/contex-menu/menu/menu-item-actions.ts">
304
+ <entry file="file://$PROJECT_DIR$/src/markdown/highlight/highlight-math-token.ts">
285
305
  <provider selected="true" editor-type-id="text-editor">
286
- <state relative-caret-position="855">
287
- <caret line="57" selection-start-line="57" selection-end-line="58" />
288
- <folding>
289
- <element signature="e#0#42#0" expanded="true" />
290
- </folding>
306
+ <state relative-caret-position="264">
307
+ <caret line="250" column="5" selection-start-line="250" selection-start-column="5" selection-end-line="250" selection-end-column="5" />
291
308
  </state>
292
309
  </provider>
293
310
  </entry>
294
311
  </file>
295
312
  <file pinned="false" current-in-tab="false">
296
- <entry file="file://$PROJECT_DIR$/src/contex-menu/menu/menu-items.ts">
313
+ <entry file="file://$PROJECT_DIR$/src/styles/index.ts">
297
314
  <provider selected="true" editor-type-id="text-editor">
298
- <state relative-caret-position="105">
299
- <caret line="7" column="36" selection-start-line="7" selection-start-column="36" selection-end-line="7" selection-end-column="36" />
300
- <folding>
301
- <element signature="e#0#43#0" expanded="true" />
302
- </folding>
315
+ <state relative-caret-position="1230">
316
+ <caret line="82" column="4" selection-start-line="82" selection-start-column="4" selection-end-line="82" selection-end-column="4" />
303
317
  </state>
304
318
  </provider>
305
319
  </entry>
306
320
  </file>
307
321
  <file pinned="false" current-in-tab="false">
308
- <entry file="file://$PROJECT_DIR$/src/helpers/parse-mmd-element.ts">
322
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/output/svg.js">
309
323
  <provider selected="true" editor-type-id="text-editor">
310
- <state relative-caret-position="330">
311
- <caret line="22" column="14" selection-start-line="22" selection-start-column="14" selection-end-line="22" selection-end-column="15" />
324
+ <state relative-caret-position="1665">
325
+ <caret line="111" column="54" selection-start-line="111" selection-start-column="54" selection-end-line="111" selection-end-column="54" />
312
326
  </state>
313
327
  </provider>
314
328
  </entry>
315
329
  </file>
316
330
  <file pinned="false" current-in-tab="false">
317
- <entry file="file://$PROJECT_DIR$/tests/_csv.js">
331
+ <entry file="file://$PROJECT_DIR$/package.json">
318
332
  <provider selected="true" editor-type-id="text-editor">
319
- <state relative-caret-position="510">
320
- <caret line="34" column="41" selection-start-line="34" selection-start-column="22" selection-end-line="34" selection-end-column="41" />
333
+ <state relative-caret-position="30">
334
+ <caret line="2" column="19" selection-start-line="2" selection-start-column="19" selection-end-line="2" selection-end-column="19" />
321
335
  </state>
322
336
  </provider>
323
337
  </entry>
324
338
  </file>
325
339
  <file pinned="false" current-in-tab="false">
326
- <entry file="file://$PROJECT_DIR$/lib/mathpix-markdown-model/index.d.ts">
340
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/output/common/FontData.ts">
327
341
  <provider selected="true" editor-type-id="text-editor">
328
- <state relative-caret-position="2040">
329
- <caret line="137" column="35" selection-start-line="137" selection-start-column="35" selection-end-line="137" selection-end-column="35" />
342
+ <state relative-caret-position="4620">
343
+ <caret line="309" column="16" selection-start-line="309" selection-start-column="8" selection-end-line="309" selection-end-column="16" />
330
344
  </state>
331
345
  </provider>
332
346
  </entry>
@@ -344,36 +358,36 @@
344
358
  </component>
345
359
  <component name="FindInProjectRecents">
346
360
  <findStrings>
347
- <find>ascii_tsv</find>
348
- <find>cellMd</find>
349
- <find>\n</find>
350
361
  <find>console.log</find>
351
- <find>csv</find>
352
- <find>&quot;'</find>
353
- <find>chiller condition</find>
354
- <find>Current assets</find>
355
- <find>latex</find>
356
- <find>mathTokenTypes</find>
357
- <find>table-markdown</find>
358
- <find>MSSM phases</find>
359
- <find>BOREXINO</find>
360
- <find>table_markdown</find>
361
- <find>ascii</find>
362
- <find>renderInlineTokenBlock</find>
363
- <find>renderTabularInline</find>
364
- <find>include_tsv</find>
365
- <find>env.tabulare</find>
366
- <find>tsv</find>
367
- <find>mathml</find>
368
- <find>copy</find>
369
- <find>parseMarkdownByHTML</find>
370
- <find>formatSourceHtml</find>
371
- <find>formatSource</find>
372
- <find>value</find>
373
- <find>MATHML</find>
374
- <find>&amp;</find>
375
- <find>getMathpixFontsStyle</find>
376
- <find>Inconsolata</find>
362
+ <find>debu</find>
363
+ <find>includegraphics</find>
364
+ <find>data-mmd-highlight</find>
365
+ <find>image</find>
366
+ <find>textcolor</find>
367
+ <find>frac</find>
368
+ <find>isBreak</find>
369
+ <find>style</find>
370
+ <find>line</find>
371
+ <find>nextItem</find>
372
+ <find>positions</find>
373
+ <find>mdPluginCollapsible</find>
374
+ <find>TTocStyle</find>
375
+ <find>filteredHighlightContent</find>
376
+ <find>sortHighlights</find>
377
+ <find>mmd-highlight-text-color</find>
378
+ <find>mathEquation</find>
379
+ <find>height</find>
380
+ <find>ex</find>
381
+ <find>heightD</find>
382
+ <find>outerHTML</find>
383
+ <find>LiteElement</find>
384
+ <find>LiteNode</find>
385
+ <find>node_highlight</find>
386
+ <find>OuterData</find>
387
+ <find>x_height</find>
388
+ <find>console</find>
389
+ <find>mergingHighlights</find>
390
+ <find>highlightAll</find>
377
391
  </findStrings>
378
392
  <replaceStrings>
379
393
  <replace>MJSimple</replace>
@@ -382,13 +396,9 @@
382
396
  <replace>[\w\s]+</replace>
383
397
  <replace>.table-of-contents</replace>
384
398
  <replace>operation</replace>
399
+ <replace />
385
400
  </replaceStrings>
386
401
  <dirStrings>
387
- <dir>$PROJECT_DIR$/tests/_data/_wolfram</dir>
388
- <dir>$PROJECT_DIR$/src/mathjax/serialized-wolfram</dir>
389
- <dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex</dir>
390
- <dir>$PROJECT_DIR$/src/mathjax/helpers/array</dir>
391
- <dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/core</dir>
392
402
  <dir>$PROJECT_DIR$/src/contex-menu/menu</dir>
393
403
  <dir>$PROJECT_DIR$/src/mathjax/helpers</dir>
394
404
  <dir>$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular</dir>
@@ -396,23 +406,28 @@
396
406
  <dir>$PROJECT_DIR$/node_modules/markdown-it/lib/rules_inline</dir>
397
407
  <dir>$PROJECT_DIR$/src/markdown/md-chemistry</dir>
398
408
  <dir>$PROJECT_DIR$/node_modules</dir>
399
- <dir>$PROJECT_DIR$/node_modules/mathjax-full/js</dir>
400
- <dir>$PROJECT_DIR$/src/components</dir>
401
- <dir>$PROJECT_DIR$/node_modules/mathjax-full/ts</dir>
402
- <dir>$PROJECT_DIR$/tests</dir>
403
409
  <dir>$PROJECT_DIR$/tests/_data/_tsv_with_array</dir>
404
410
  <dir>$PROJECT_DIR$/tests/_data/_tsv</dir>
405
411
  <dir>$PROJECT_DIR$/tests/_data/_csv</dir>
406
412
  <dir>$PROJECT_DIR$/tests/_data/_ascii</dir>
407
413
  <dir>$PROJECT_DIR$/src/mathjax/serialized-ascii</dir>
408
- <dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
409
414
  <dir>$PROJECT_DIR$/src/contex-menu</dir>
410
415
  <dir>$PROJECT_DIR$/src/mathpix-markdown-model</dir>
411
- <dir>$PROJECT_DIR$/src/mathjax</dir>
412
416
  <dir>$PROJECT_DIR$/tests/_data</dir>
413
- <dir>$PROJECT_DIR$/src/markdown</dir>
417
+ <dir>$PROJECT_DIR$/examples</dir>
418
+ <dir>$PROJECT_DIR$/src/markdown/md-theorem</dir>
419
+ <dir>$PROJECT_DIR$/node_modules/mathjax-full/js</dir>
420
+ <dir>$PROJECT_DIR$/tests</dir>
421
+ <dir>$PROJECT_DIR$/src/components</dir>
422
+ <dir>$PROJECT_DIR$/src/markdown/md-renderer-rules</dir>
423
+ <dir>$PROJECT_DIR$/src/markdown/md-inline-rule</dir>
424
+ <dir>$PROJECT_DIR$/node_modules/markdown-it-emoji/lib</dir>
425
+ <dir>$PROJECT_DIR$/src/mathjax</dir>
414
426
  <dir>$PROJECT_DIR$/src/markdown/md-block-rule</dir>
415
427
  <dir>$PROJECT_DIR$/src/styles</dir>
428
+ <dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
429
+ <dir>$PROJECT_DIR$/src/markdown</dir>
430
+ <dir>$PROJECT_DIR$/node_modules/mathjax-full/ts</dir>
416
431
  <dir>$PROJECT_DIR$/src</dir>
417
432
  </dirStrings>
418
433
  </component>
@@ -422,57 +437,57 @@
422
437
  <component name="IdeDocumentHistory">
423
438
  <option name="CHANGED_PATHS">
424
439
  <list>
425
- <option value="$PROJECT_DIR$/src/markdown/md-block-rule/lists/index.ts" />
426
- <option value="$PROJECT_DIR$/tests/_data/_tokenPositions/_data_lists.js" />
427
- <option value="$PROJECT_DIR$/tests/_tokenPositions.js" />
428
- <option value="$PROJECT_DIR$/src/markdown/md-core-rules/set-positions.ts" />
429
- <option value="$PROJECT_DIR$/src/markdown/md-chemistry/index.ts" />
430
- <option value="$PROJECT_DIR$/src/markdown/md-chemistry/smiles-drawer/src/Parser.ts" />
431
- <option value="$PROJECT_DIR$/test.html" />
432
- <option value="$PROJECT_DIR$/tests/_data/_smiles/_markush.js" />
433
- <option value="$PROJECT_DIR$/tests/_smiles.js" />
434
- <option value="$PROJECT_DIR$/src/markdown/utils.ts" />
435
- <option value="$PROJECT_DIR$/tests/_data/_mathjax/_data.js" />
436
- <option value="$PROJECT_DIR$/tests/_mathjax.js" />
437
- <option value="$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/ParseUtil.js" />
438
- <option value="$PROJECT_DIR$/src/contex-menu/menu/consts.ts" />
439
- <option value="$PROJECT_DIR$/src/contex-menu/menu/menu-item-actions.ts" />
440
- <option value="$PROJECT_DIR$/src/contex-menu/menu/index.ts" />
441
- <option value="$PROJECT_DIR$/src/markdown/common/csv.ts" />
442
- <option value="$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_gathered_aligned.js" />
443
- <option value="$PROJECT_DIR$/tests/_tsv_with_array.js" />
444
- <option value="$PROJECT_DIR$/tests/_ascii.js" />
445
- <option value="$PROJECT_DIR$/examples/run.js" />
446
- <option value="$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/.env" />
447
- <option value="$PROJECT_DIR$/tests/_data/_tsv_with_array/_data.js" />
448
- <option value="$PROJECT_DIR$/tests/_data/_csv/_data.js" />
449
- <option value="$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/src/form.jsx" />
450
- <option value="$PROJECT_DIR$/src/markdown/md-core-rules/generate-tsv-csv.ts" />
451
- <option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/index.ts" />
452
- <option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts" />
453
- <option value="$PROJECT_DIR$/tests/_csv.js" />
454
- <option value="$PROJECT_DIR$/src/mathjax/index.ts" />
440
+ <option value="$PROJECT_DIR$/src/mathjax/helpers/operatorname/OperatorNameConfiguration.ts" />
441
+ <option value="$PROJECT_DIR$/src/mathjax/helpers/operatorname/OperatorNameMethods.ts" />
442
+ <option value="$PROJECT_DIR$/src/mathjax/mathjax.ts" />
443
+ <option value="$PROJECT_DIR$/src/mathjax/mathJaxConfig.ts" />
444
+ <option value="$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/ams/AmsMethods.js" />
445
+ <option value="$PROJECT_DIR$/tests/_data/_ascii/_asciiMore.js" />
455
446
  <option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts" />
456
- <option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/common.ts" />
447
+ <option value="$PROJECT_DIR$/src/markdown/rules.ts" />
448
+ <option value="$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block/html_block.js" />
449
+ <option value="$PROJECT_DIR$/node_modules/markdown-it/lib/rules_inline/html_inline.js" />
450
+ <option value="$PROJECT_DIR$/node_modules/markdown-it/lib/renderer.js" />
451
+ <option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/underline.ts" />
452
+ <option value="$PROJECT_DIR$/src/markdown/common.ts" />
453
+ <option value="$PROJECT_DIR$/src/markdown/md-inline-rule/underline.ts" />
454
+ <option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/index.ts" />
455
+ <option value="$PROJECT_DIR$/src/markdown/highlight/highlight-math.ts" />
456
+ <option value="$PROJECT_DIR$/src/markdown/md-theorem/helper.ts" />
457
+ <option value="$PROJECT_DIR$/src/markdown/md-theorem/inline-rule.ts" />
458
+ <option value="$PROJECT_DIR$/src/markdown/mathpix-markdown-plugins.tsx" />
459
+ <option value="$PROJECT_DIR$/src/markdown/highlight/highlight-text-token.ts" />
460
+ <option value="$PROJECT_DIR$/src/markdown/highlight/consts.ts" />
461
+ <option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/render-rule-highlights.ts" />
457
462
  <option value="$PROJECT_DIR$/src/markdown/common/consts.ts" />
463
+ <option value="$PROJECT_DIR$/src/markdown/mdPluginConfigured.ts" />
464
+ <option value="$PROJECT_DIR$/src/markdown/index.ts" />
465
+ <option value="$PROJECT_DIR$/src/mathjax/my-BaseMappings.ts" />
466
+ <option value="$PROJECT_DIR$/src/components/mathpix-markdown/index.tsx" />
458
467
  <option value="$PROJECT_DIR$/src/mathpix-markdown-model/index.ts" />
459
- <option value="$PROJECT_DIR$/tests/_data/_table-markdown/_data.js" />
460
- <option value="$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_include_sub_math.js" />
461
- <option value="$PROJECT_DIR$/README.md" />
468
+ <option value="$PROJECT_DIR$/src/markdown/utils.ts" />
462
469
  <option value="$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" />
463
- <option value="$PROJECT_DIR$/src/markdown/rules.ts" />
464
- <option value="$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts" />
470
+ <option value="$PROJECT_DIR$/src/markdown/mdSetPositionsAndHighlight.ts" />
471
+ <option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-table.ts" />
465
472
  <option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" />
466
- <option value="$PROJECT_DIR$/src/contex-menu/menu/menu-items.ts" />
467
- <option value="$PROJECT_DIR$/src/contex-menu/menu/menu-item.ts" />
468
- <option value="$PROJECT_DIR$/src/helpers/parse-mmd-element.ts" />
473
+ <option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/render-lists.ts" />
469
474
  <option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts" />
470
- <option value="$PROJECT_DIR$/tests/_data/_tabular/_data.js" />
471
- <option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" />
472
- <option value="$PROJECT_DIR$/src/styles/styles-tabular.ts" />
473
- <option value="$PROJECT_DIR$/src/styles/styles-fonts.ts" />
475
+ <option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/index.ts" />
476
+ <option value="$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts" />
477
+ <option value="$PROJECT_DIR$/src/markdown/md-theorem/index.ts" />
478
+ <option value="$PROJECT_DIR$/src/markdown/mdPluginText.ts" />
474
479
  <option value="$PROJECT_DIR$/src/styles/styles-code.ts" />
480
+ <option value="$PROJECT_DIR$/src/index.tsx" />
481
+ <option value="$PROJECT_DIR$/src/markdown/highlight/render-rule-highlights.ts" />
482
+ <option value="$PROJECT_DIR$/src/mathjax/index.ts" />
483
+ <option value="$PROJECT_DIR$/src/styles/index.ts" />
475
484
  <option value="$PROJECT_DIR$/package.json" />
485
+ <option value="$PROJECT_DIR$/node_modules/mathjax-full/js/output/svg.js" />
486
+ <option value="$PROJECT_DIR$/src/markdown/highlight/common.ts" />
487
+ <option value="$PROJECT_DIR$/src/markdown/highlight/highlight-math-token.ts" />
488
+ <option value="$PROJECT_DIR$/tests/_data/_highlights/_data.js" />
489
+ <option value="$PROJECT_DIR$/tests/_highlights.js" />
490
+ <option value="$PROJECT_DIR$/src/markdown/md-core-rules/set-positions.ts" />
476
491
  </list>
477
492
  </option>
478
493
  </component>
@@ -502,11 +517,11 @@
502
517
  <path value="$PROJECT_DIR$/package.json" />
503
518
  </packageJsonPaths>
504
519
  </component>
505
- <component name="ProjectFrameBounds" fullScreen="true">
506
- <option name="x" value="-154" />
507
- <option name="y" value="-1080" />
508
- <option name="width" value="1920" />
509
- <option name="height" value="1080" />
520
+ <component name="ProjectFrameBounds">
521
+ <option name="x" value="6" />
522
+ <option name="y" value="23" />
523
+ <option name="width" value="1615" />
524
+ <option name="height" value="974" />
510
525
  </component>
511
526
  <component name="ProjectLevelVcsManager" settingsEditedManually="true" />
512
527
  <component name="ProjectView">
@@ -514,6 +529,7 @@
514
529
  <foldersAlwaysOnTop value="true" />
515
530
  </navigator>
516
531
  <panes>
532
+ <pane id="Scope" />
517
533
  <pane id="ProjectPane">
518
534
  <subPane>
519
535
  <expand>
@@ -521,10 +537,109 @@
521
537
  <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
522
538
  <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
523
539
  </path>
540
+ <path>
541
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
542
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
543
+ <item name="examples" type="462c0819:PsiDirectoryNode" />
544
+ </path>
545
+ <path>
546
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
547
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
548
+ <item name="node_modules" type="462c0819:PsiDirectoryNode" />
549
+ </path>
550
+ <path>
551
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
552
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
553
+ <item name="node_modules" type="462c0819:PsiDirectoryNode" />
554
+ <item name="mathjax-full" type="462c0819:PsiDirectoryNode" />
555
+ </path>
556
+ <path>
557
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
558
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
559
+ <item name="node_modules" type="462c0819:PsiDirectoryNode" />
560
+ <item name="mathjax-full" type="462c0819:PsiDirectoryNode" />
561
+ <item name="js" type="462c0819:PsiDirectoryNode" />
562
+ </path>
563
+ <path>
564
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
565
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
566
+ <item name="node_modules" type="462c0819:PsiDirectoryNode" />
567
+ <item name="mathjax-full" type="462c0819:PsiDirectoryNode" />
568
+ <item name="js" type="462c0819:PsiDirectoryNode" />
569
+ <item name="output" type="462c0819:PsiDirectoryNode" />
570
+ </path>
571
+ <path>
572
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
573
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
574
+ <item name="src" type="462c0819:PsiDirectoryNode" />
575
+ </path>
576
+ <path>
577
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
578
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
579
+ <item name="src" type="462c0819:PsiDirectoryNode" />
580
+ <item name="components" type="462c0819:PsiDirectoryNode" />
581
+ </path>
582
+ <path>
583
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
584
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
585
+ <item name="src" type="462c0819:PsiDirectoryNode" />
586
+ <item name="components" type="462c0819:PsiDirectoryNode" />
587
+ <item name="mathpix-markdown" type="462c0819:PsiDirectoryNode" />
588
+ </path>
589
+ <path>
590
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
591
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
592
+ <item name="src" type="462c0819:PsiDirectoryNode" />
593
+ <item name="helpers" type="462c0819:PsiDirectoryNode" />
594
+ </path>
595
+ <path>
596
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
597
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
598
+ <item name="src" type="462c0819:PsiDirectoryNode" />
599
+ <item name="markdown" type="462c0819:PsiDirectoryNode" />
600
+ </path>
601
+ <path>
602
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
603
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
604
+ <item name="src" type="462c0819:PsiDirectoryNode" />
605
+ <item name="markdown" type="462c0819:PsiDirectoryNode" />
606
+ <item name="common" type="462c0819:PsiDirectoryNode" />
607
+ </path>
608
+ <path>
609
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
610
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
611
+ <item name="src" type="462c0819:PsiDirectoryNode" />
612
+ <item name="markdown" type="462c0819:PsiDirectoryNode" />
613
+ <item name="highlight" type="462c0819:PsiDirectoryNode" />
614
+ </path>
524
615
  <path>
525
616
  <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
526
617
  <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
527
618
  <item name="src" type="462c0819:PsiDirectoryNode" />
619
+ <item name="markdown" type="462c0819:PsiDirectoryNode" />
620
+ <item name="md-block-rule" type="462c0819:PsiDirectoryNode" />
621
+ </path>
622
+ <path>
623
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
624
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
625
+ <item name="src" type="462c0819:PsiDirectoryNode" />
626
+ <item name="markdown" type="462c0819:PsiDirectoryNode" />
627
+ <item name="md-block-rule" type="462c0819:PsiDirectoryNode" />
628
+ <item name="lists" type="462c0819:PsiDirectoryNode" />
629
+ </path>
630
+ <path>
631
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
632
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
633
+ <item name="src" type="462c0819:PsiDirectoryNode" />
634
+ <item name="markdown" type="462c0819:PsiDirectoryNode" />
635
+ <item name="md-inline-rule" type="462c0819:PsiDirectoryNode" />
636
+ </path>
637
+ <path>
638
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
639
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
640
+ <item name="src" type="462c0819:PsiDirectoryNode" />
641
+ <item name="markdown" type="462c0819:PsiDirectoryNode" />
642
+ <item name="md-renderer-rules" type="462c0819:PsiDirectoryNode" />
528
643
  </path>
529
644
  <path>
530
645
  <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
@@ -560,13 +675,19 @@
560
675
  <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
561
676
  <item name="tests" type="462c0819:PsiDirectoryNode" />
562
677
  <item name="_data" type="462c0819:PsiDirectoryNode" />
563
- <item name="_tabular" type="462c0819:PsiDirectoryNode" />
678
+ <item name="_highlights" type="462c0819:PsiDirectoryNode" />
679
+ </path>
680
+ <path>
681
+ <item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
682
+ <item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
683
+ <item name="tests" type="462c0819:PsiDirectoryNode" />
684
+ <item name="_data" type="462c0819:PsiDirectoryNode" />
685
+ <item name="_image" type="462c0819:PsiDirectoryNode" />
564
686
  </path>
565
687
  </expand>
566
688
  <select />
567
689
  </subPane>
568
690
  </pane>
569
- <pane id="Scope" />
570
691
  </panes>
571
692
  </component>
572
693
  <component name="PropertiesComponent">
@@ -583,17 +704,17 @@
583
704
  <property name="typescript-compiler-editor-notification" value="false" />
584
705
  </component>
585
706
  <component name="RecentsManager">
586
- <key name="CopyFile.RECENT_KEYS">
587
- <recent name="$PROJECT_DIR$/src/mathjax/helpers" />
588
- <recent name="$PROJECT_DIR$/examples/react-app/use-toc" />
589
- <recent name="$PROJECT_DIR$/src/mathjax/serialized-wolfram" />
590
- </key>
591
707
  <key name="MoveFile.RECENT_KEYS">
708
+ <recent name="$PROJECT_DIR$/src/markdown" />
709
+ <recent name="$PROJECT_DIR$/src/markdown/highlight" />
592
710
  <recent name="$PROJECT_DIR$/tests" />
593
711
  <recent name="$PROJECT_DIR$/doc/images" />
594
712
  <recent name="$PROJECT_DIR$/examples/tests-md" />
595
- <recent name="$PROJECT_DIR$/src/contex-menu" />
596
- <recent name="$PROJECT_DIR$/src/contex-menu/menu" />
713
+ </key>
714
+ <key name="CopyFile.RECENT_KEYS">
715
+ <recent name="$PROJECT_DIR$/src/mathjax/helpers" />
716
+ <recent name="$PROJECT_DIR$/examples/react-app/use-toc" />
717
+ <recent name="$PROJECT_DIR$/src/mathjax/serialized-wolfram" />
597
718
  </key>
598
719
  </component>
599
720
  <component name="RunDashboard">
@@ -815,12 +936,27 @@
815
936
  <workItem from="1684160635131" duration="191000" />
816
937
  <workItem from="1684213190626" duration="3996000" />
817
938
  <workItem from="1684223503106" duration="3033000" />
818
- <workItem from="1684228066840" duration="248000" />
939
+ <workItem from="1684228066840" duration="284000" />
940
+ <workItem from="1684306101828" duration="19797000" />
941
+ <workItem from="1684750729727" duration="22830000" />
942
+ <workItem from="1684852924939" duration="9404000" />
943
+ <workItem from="1684874137595" duration="597000" />
944
+ <workItem from="1684928761067" duration="47392000" />
945
+ <workItem from="1685327350648" duration="12784000" />
946
+ <workItem from="1685367652625" duration="2469000" />
947
+ <workItem from="1685431516374" duration="4042000" />
948
+ <workItem from="1685448421165" duration="30434000" />
949
+ <workItem from="1685589084110" duration="34402000" />
950
+ <workItem from="1685963404444" duration="25595000" />
951
+ <workItem from="1686047956668" duration="12924000" />
952
+ <workItem from="1686121104244" duration="63834000" />
953
+ <workItem from="1686383302790" duration="22392000" />
954
+ <workItem from="1686597193495" duration="4769000" />
819
955
  </task>
820
956
  <servers />
821
957
  </component>
822
958
  <component name="TimeTrackingManager">
823
- <option name="totallyTimeSpent" value="2122907000" />
959
+ <option name="totallyTimeSpent" value="2436608000" />
824
960
  </component>
825
961
  <component name="TodoView">
826
962
  <todo-panel id="selected-file">
@@ -832,9 +968,9 @@
832
968
  </todo-panel>
833
969
  </component>
834
970
  <component name="ToolWindowManager">
835
- <frame x="-154" y="-1080" width="1920" height="1080" extended-state="0" />
971
+ <frame x="6" y="23" width="1615" height="974" extended-state="0" />
836
972
  <layout>
837
- <window_info content_ui="combo" id="Project" order="0" sideWeight="0.49395162" visible="true" weight="0.15429173" />
973
+ <window_info content_ui="combo" id="Project" order="0" sideWeight="0.49395162" visible="true" weight="0.11794228" />
838
974
  <window_info id="Structure" order="1" sideWeight="0.5060484" side_tool="true" weight="0.21637055" />
839
975
  <window_info id="npm" order="2" side_tool="true" />
840
976
  <window_info id="DB Browser" order="3" />
@@ -853,7 +989,7 @@
853
989
  <window_info anchor="bottom" id="Version Control" order="9" show_stripe_button="false" />
854
990
  <window_info anchor="bottom" id="DB Execution Console" order="10" />
855
991
  <window_info anchor="bottom" id="TypeScript" order="11" />
856
- <window_info active="true" anchor="bottom" id="Terminal" order="12" sideWeight="0.4993515" visible="true" weight="0.36633664" />
992
+ <window_info active="true" anchor="bottom" id="Terminal" order="12" sideWeight="0.4993515" visible="true" weight="0.4659864" />
857
993
  <window_info anchor="bottom" id="Event Log" order="13" sideWeight="0.5006485" side_tool="true" weight="0.24063565" />
858
994
  <window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
859
995
  <window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
@@ -897,7 +1033,7 @@
897
1033
  <breakpoints>
898
1034
  <line-breakpoint enabled="true" type="javascript">
899
1035
  <url>file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts</url>
900
- <line>353</line>
1036
+ <line>355</line>
901
1037
  <option name="timeStamp" value="16" />
902
1038
  </line-breakpoint>
903
1039
  <line-breakpoint enabled="true" type="javascript">
@@ -916,12 +1052,12 @@
916
1052
  </line-breakpoint>
917
1053
  <line-breakpoint enabled="true" type="javascript">
918
1054
  <url>file://$PROJECT_DIR$/src/markdown/md-theorem/index.ts</url>
919
- <line>3</line>
1055
+ <line>4</line>
920
1056
  <option name="timeStamp" value="23" />
921
1057
  </line-breakpoint>
922
1058
  <line-breakpoint enabled="true" type="javascript">
923
1059
  <url>file://$PROJECT_DIR$/src/markdown/md-theorem/index.ts</url>
924
- <line>4</line>
1060
+ <line>5</line>
925
1061
  <option name="timeStamp" value="25" />
926
1062
  </line-breakpoint>
927
1063
  <line-breakpoint enabled="true" type="javascript">
@@ -941,7 +1077,7 @@
941
1077
  </line-breakpoint>
942
1078
  <line-breakpoint enabled="true" type="javascript">
943
1079
  <url>file://$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts</url>
944
- <line>408</line>
1080
+ <line>467</line>
945
1081
  <option name="timeStamp" value="29" />
946
1082
  </line-breakpoint>
947
1083
  <line-breakpoint enabled="true" type="javascript">
@@ -951,7 +1087,7 @@
951
1087
  </line-breakpoint>
952
1088
  <line-breakpoint enabled="true" type="javascript">
953
1089
  <url>file://$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts</url>
954
- <line>726</line>
1090
+ <line>792</line>
955
1091
  <option name="timeStamp" value="32" />
956
1092
  </line-breakpoint>
957
1093
  <line-breakpoint enabled="true" type="javascript">
@@ -961,12 +1097,12 @@
961
1097
  </line-breakpoint>
962
1098
  <line-breakpoint enabled="true" type="javascript">
963
1099
  <url>file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts</url>
964
- <line>1032</line>
1100
+ <line>1087</line>
965
1101
  <option name="timeStamp" value="36" />
966
1102
  </line-breakpoint>
967
1103
  <line-breakpoint enabled="true" type="javascript">
968
1104
  <url>file://$PROJECT_DIR$/src/markdown/mdPluginText.ts</url>
969
- <line>335</line>
1105
+ <line>350</line>
970
1106
  <option name="timeStamp" value="37" />
971
1107
  </line-breakpoint>
972
1108
  <line-breakpoint enabled="true" type="javascript">
@@ -986,7 +1122,7 @@
986
1122
  </line-breakpoint>
987
1123
  <line-breakpoint enabled="true" type="javascript">
988
1124
  <url>file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts</url>
989
- <line>72</line>
1125
+ <line>73</line>
990
1126
  <option name="timeStamp" value="43" />
991
1127
  </line-breakpoint>
992
1128
  <line-breakpoint enabled="true" type="javascript">
@@ -1001,336 +1137,440 @@
1001
1137
  </line-breakpoint>
1002
1138
  <line-breakpoint enabled="true" type="javascript">
1003
1139
  <url>file://$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts</url>
1004
- <line>498</line>
1140
+ <line>563</line>
1005
1141
  <option name="timeStamp" value="46" />
1006
1142
  </line-breakpoint>
1143
+ <line-breakpoint enabled="true" type="javascript">
1144
+ <url>file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/TexParser.ts</url>
1145
+ <line>437</line>
1146
+ <option name="timeStamp" value="47" />
1147
+ </line-breakpoint>
1148
+ <line-breakpoint enabled="true" type="javascript">
1149
+ <url>file://$PROJECT_DIR$/src/markdown/mathpix-markdown-plugins.tsx</url>
1150
+ <option name="timeStamp" value="48" />
1151
+ </line-breakpoint>
1007
1152
  </breakpoints>
1008
1153
  </breakpoint-manager>
1009
1154
  </component>
1010
1155
  <component name="editorHistoryManager">
1011
- <entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/index.js" />
1012
- <entry file="file://$PROJECT_DIR$/examples/run.js" />
1013
- <entry file="file://$PROJECT_DIR$/examples/app.js">
1014
- <provider selected="true" editor-type-id="text-editor" />
1015
- </entry>
1016
- <entry file="file://$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/package.json">
1017
- <provider selected="true" editor-type-id="text-editor" />
1018
- </entry>
1019
- <entry file="file://$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/.env" />
1020
- <entry file="file://$PROJECT_DIR$/tests/_data/_csv/_data.js">
1156
+ <entry file="file://$PROJECT_DIR$/src/markdown/highlight/consts.ts" />
1157
+ <entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_inline/state_inline.js">
1021
1158
  <provider selected="true" editor-type-id="text-editor">
1022
- <state relative-caret-position="18015">
1023
- <caret line="1201" column="2" selection-start-line="1201" selection-start-column="2" selection-end-line="1201" selection-end-column="2" />
1159
+ <state relative-caret-position="495">
1160
+ <caret line="33" column="23" selection-start-line="33" selection-start-column="18" selection-end-line="33" selection-end-column="23" />
1024
1161
  </state>
1025
1162
  </provider>
1026
1163
  </entry>
1027
- <entry file="file://$PROJECT_DIR$/src/markdown/md-core-rules/generate-tsv-csv.ts" />
1028
- <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts">
1164
+ <entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/token.js">
1029
1165
  <provider selected="true" editor-type-id="text-editor">
1030
- <state relative-caret-position="1560">
1031
- <caret line="105" column="19" selection-start-line="105" selection-start-column="10" selection-end-line="105" selection-end-column="19" />
1166
+ <state relative-caret-position="210">
1167
+ <caret line="14" column="9" selection-start-line="14" selection-start-column="9" selection-end-line="14" selection-end-column="34" />
1032
1168
  </state>
1033
1169
  </provider>
1034
1170
  </entry>
1035
- <entry file="file://$PROJECT_DIR$/src/markdown/index.ts">
1171
+ <entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/renderer.js">
1036
1172
  <provider selected="true" editor-type-id="text-editor">
1037
- <state relative-caret-position="1170">
1038
- <caret line="83" column="16" selection-start-line="83" selection-start-column="16" selection-end-line="83" selection-end-column="16" />
1173
+ <state relative-caret-position="300">
1174
+ <caret line="20" column="25" selection-start-line="20" selection-start-column="14" selection-end-line="20" selection-end-column="25" />
1039
1175
  </state>
1040
1176
  </provider>
1041
1177
  </entry>
1042
- <entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/renderer.js" />
1043
- <entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block/table.js" />
1044
- <entry file="file://$PROJECT_DIR$/doc/sections.md">
1045
- <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
1046
- <state split_layout="FIRST">
1047
- <first_editor />
1048
- <second_editor />
1178
+ <entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block/blockquote.js">
1179
+ <provider selected="true" editor-type-id="text-editor">
1180
+ <state relative-caret-position="810">
1181
+ <caret line="54" column="33" selection-start-line="54" selection-start-column="23" selection-end-line="54" selection-end-column="33" />
1049
1182
  </state>
1050
1183
  </provider>
1051
1184
  </entry>
1052
- <entry file="file://$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/README.md">
1053
- <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
1054
- <state split_layout="FIRST">
1055
- <first_editor />
1056
- <second_editor />
1185
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/ams/AmsMappings.ts">
1186
+ <provider selected="true" editor-type-id="text-editor">
1187
+ <state relative-caret-position="218">
1188
+ <caret line="72" column="25" selection-start-line="72" selection-start-column="25" selection-end-line="72" selection-end-column="53" />
1057
1189
  </state>
1058
1190
  </provider>
1059
1191
  </entry>
1060
- <entry file="file://$PROJECT_DIR$/src/markdown/common/labels.ts">
1192
+ <entry file="file://$PROJECT_DIR$/src/mathjax/my-BaseMappings.ts">
1061
1193
  <provider selected="true" editor-type-id="text-editor">
1062
- <state relative-caret-position="660">
1063
- <caret line="44" column="2" selection-start-line="44" selection-start-column="2" selection-end-line="44" selection-end-column="2" />
1194
+ <state relative-caret-position="360">
1195
+ <caret line="24" column="38" selection-start-line="24" selection-start-column="38" selection-end-line="24" selection-end-column="38" />
1064
1196
  </state>
1065
1197
  </provider>
1066
1198
  </entry>
1067
- <entry file="file://$PROJECT_DIR$/src/markdown/common/table-markdown.ts">
1199
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginConfigured.ts">
1068
1200
  <provider selected="true" editor-type-id="text-editor">
1069
- <state relative-caret-position="114">
1070
- <caret line="23" column="13" selection-start-line="23" selection-start-column="13" selection-end-line="23" selection-end-column="13" />
1201
+ <state relative-caret-position="225">
1202
+ <caret line="15" column="45" selection-start-line="15" selection-start-column="45" selection-end-line="15" selection-end-column="45" />
1203
+ <folding>
1204
+ <element signature="e#0#42#0" expanded="true" />
1205
+ </folding>
1071
1206
  </state>
1072
1207
  </provider>
1073
1208
  </entry>
1074
- <entry file="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts">
1209
+ <entry file="file://$PROJECT_DIR$/src/markdown/common/consts.ts">
1075
1210
  <provider selected="true" editor-type-id="text-editor">
1076
- <state relative-caret-position="16860">
1077
- <caret line="1127" column="25" selection-start-line="1127" selection-start-column="25" selection-end-line="1127" selection-end-column="25" />
1211
+ <state relative-caret-position="275">
1212
+ <caret line="149" column="4" selection-start-line="149" selection-start-column="4" selection-end-line="149" selection-end-column="4" />
1078
1213
  </state>
1079
1214
  </provider>
1080
1215
  </entry>
1081
- <entry file="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/index.ts">
1216
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts">
1082
1217
  <provider selected="true" editor-type-id="text-editor">
1083
- <state relative-caret-position="3525">
1084
- <caret line="239" column="77" selection-start-line="239" selection-start-column="74" selection-end-line="239" selection-end-column="77" />
1218
+ <state relative-caret-position="139">
1219
+ <caret line="803" selection-start-line="803" selection-end-line="803" />
1220
+ <folding>
1221
+ <element signature="e#0#49#0" expanded="true" />
1222
+ <element signature="e#1399#1465#0" expanded="true" />
1223
+ <element signature="n#style#0;n#a#0;n#!!top" expanded="true" />
1224
+ </folding>
1085
1225
  </state>
1086
1226
  </provider>
1087
1227
  </entry>
1088
- <entry file="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/common.ts">
1228
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts">
1089
1229
  <provider selected="true" editor-type-id="text-editor">
1090
- <state relative-caret-position="105">
1091
- <caret line="7" column="85" selection-start-line="7" selection-start-column="85" selection-end-line="7" selection-end-column="85" />
1230
+ <state relative-caret-position="16">
1231
+ <caret line="292" column="19" selection-start-line="292" selection-start-column="19" selection-end-line="292" selection-end-column="19" />
1092
1232
  </state>
1093
1233
  </provider>
1094
1234
  </entry>
1095
- <entry file="file://$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/src/form.jsx">
1235
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts">
1096
1236
  <provider selected="true" editor-type-id="text-editor">
1097
- <state relative-caret-position="38">
1098
- <caret line="34" column="3" lean-forward="true" selection-start-line="34" selection-start-column="3" selection-end-line="34" selection-end-column="3" />
1099
- <folding>
1100
- <element signature="e#0#31#0" expanded="true" />
1101
- </folding>
1237
+ <state relative-caret-position="282">
1238
+ <caret line="169" column="5" selection-start-line="169" selection-start-column="5" selection-end-line="169" selection-end-column="5" />
1102
1239
  </state>
1103
1240
  </provider>
1104
1241
  </entry>
1105
- <entry file="file://$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts">
1242
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/lists/index.ts">
1106
1243
  <provider selected="true" editor-type-id="text-editor">
1107
- <state relative-caret-position="585">
1108
- <caret line="40" column="12" selection-start-line="40" selection-start-column="12" selection-end-line="40" selection-end-column="51" />
1109
- </state>
1244
+ <state relative-caret-position="-1711" />
1110
1245
  </provider>
1111
1246
  </entry>
1112
- <entry file="file://$PROJECT_DIR$/node_modules/markdown-it-multimd-table/index.js">
1247
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-inline-rule/lists.ts">
1113
1248
  <provider selected="true" editor-type-id="text-editor">
1114
- <state relative-caret-position="5250">
1115
- <caret line="350" column="7" selection-start-line="350" selection-start-column="7" selection-end-line="350" selection-end-column="7" />
1249
+ <state relative-caret-position="170">
1250
+ <caret line="107" column="40" selection-start-line="107" selection-start-column="29" selection-end-line="107" selection-end-column="40" />
1251
+ <folding>
1252
+ <element signature="e#0#48#0" expanded="true" />
1253
+ </folding>
1116
1254
  </state>
1117
1255
  </provider>
1118
1256
  </entry>
1119
- <entry file="file://$PROJECT_DIR$/tests/_data/_tsv_with_array/_data.js">
1257
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginLists.ts">
1120
1258
  <provider selected="true" editor-type-id="text-editor">
1121
- <state relative-caret-position="480">
1122
- <caret line="32" column="176" selection-start-line="32" selection-start-column="176" selection-end-line="32" selection-end-column="176" />
1259
+ <state relative-caret-position="224">
1260
+ <caret line="61" column="27" selection-start-line="61" selection-start-column="27" selection-end-line="61" selection-end-column="27" />
1123
1261
  </state>
1124
1262
  </provider>
1125
1263
  </entry>
1126
- <entry file="file://$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_gathered_aligned.js">
1264
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-lists.ts">
1127
1265
  <provider selected="true" editor-type-id="text-editor">
1128
- <state relative-caret-position="225">
1129
- <caret line="15" column="4" selection-start-line="15" selection-start-column="4" selection-end-line="15" selection-end-column="4" />
1266
+ <state relative-caret-position="91">
1267
+ <caret line="13" column="33" selection-start-line="13" selection-start-column="33" selection-end-line="13" selection-end-column="33" />
1268
+ <folding>
1269
+ <element signature="e#0#70#0" expanded="true" />
1270
+ <element signature="n#style#0;n#ulEXTERNAL_FRAGMENT#0;n#li#0;n#!!top" expanded="true" />
1271
+ <element signature="n#style#0;n#ulEXTERNAL_FRAGMENT#0;n#!!top" expanded="true" />
1272
+ <element signature="n#style#0;n#olEXTERNAL_FRAGMENT#0;n#!!top" expanded="true" />
1273
+ </folding>
1130
1274
  </state>
1131
1275
  </provider>
1132
1276
  </entry>
1133
- <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts">
1277
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-table.ts">
1134
1278
  <provider selected="true" editor-type-id="text-editor">
1135
- <state relative-caret-position="15360">
1136
- <caret line="1060" selection-start-line="1060" selection-end-line="1060" />
1279
+ <state relative-caret-position="420">
1280
+ <caret line="33" column="35" selection-start-line="33" selection-start-column="22" selection-end-line="33" selection-end-column="35" />
1137
1281
  </state>
1138
1282
  </provider>
1139
1283
  </entry>
1140
- <entry file="file://$PROJECT_DIR$/src/markdown/common/consts.ts">
1284
+ <entry file="file://$PROJECT_DIR$/src/markdown/utils.ts">
1141
1285
  <provider selected="true" editor-type-id="text-editor">
1142
- <state relative-caret-position="1605">
1143
- <caret line="107" selection-start-line="107" selection-end-line="107" />
1286
+ <state relative-caret-position="7905">
1287
+ <caret line="527" column="5" selection-start-line="527" selection-start-column="5" selection-end-line="527" selection-end-column="5" />
1144
1288
  </state>
1145
1289
  </provider>
1146
1290
  </entry>
1147
- <entry file="file://$PROJECT_DIR$/src/markdown/rules.ts">
1291
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts">
1148
1292
  <provider selected="true" editor-type-id="text-editor">
1149
- <state relative-caret-position="855">
1150
- <caret line="60" selection-start-line="60" selection-end-line="60" />
1293
+ <state relative-caret-position="690">
1294
+ <caret line="46" column="19" selection-start-line="46" selection-start-column="19" selection-end-line="46" selection-end-column="19" />
1151
1295
  <folding>
1152
- <element signature="e#0#38#0" expanded="true" />
1296
+ <element signature="e#0#40#0" expanded="true" />
1153
1297
  </folding>
1154
1298
  </state>
1155
1299
  </provider>
1156
1300
  </entry>
1157
- <entry file="file://$PROJECT_DIR$/src/mathjax/mathjax.ts">
1158
- <provider selected="true" editor-type-id="text-editor" />
1159
- </entry>
1160
- <entry file="file://$PROJECT_DIR$/tests/_tabular.js">
1161
- <provider selected="true" editor-type-id="text-editor" />
1301
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginTableTabular.ts">
1302
+ <provider selected="true" editor-type-id="text-editor">
1303
+ <state relative-caret-position="360">
1304
+ <caret line="35" column="19" selection-start-line="35" selection-start-column="19" selection-end-line="35" selection-end-column="19" />
1305
+ </state>
1306
+ </provider>
1162
1307
  </entry>
1163
- <entry file="file://$PROJECT_DIR$/src/contex-menu/styles.ts">
1164
- <provider selected="true" editor-type-id="text-editor" />
1308
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/index.ts">
1309
+ <provider selected="true" editor-type-id="text-editor">
1310
+ <state relative-caret-position="600">
1311
+ <caret line="41" column="18" selection-start-line="41" selection-start-column="18" selection-end-line="41" selection-end-column="18" />
1312
+ </state>
1313
+ </provider>
1165
1314
  </entry>
1166
- <entry file="file://$PROJECT_DIR$/tests/_data/_tabular/_data.js">
1315
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/index.ts">
1167
1316
  <provider selected="true" editor-type-id="text-editor">
1168
- <state relative-caret-position="3990">
1169
- <caret line="266" column="64" selection-start-line="266" selection-start-column="64" selection-end-line="266" selection-end-column="64" />
1317
+ <state relative-caret-position="1995">
1318
+ <caret line="136" column="60" selection-start-line="136" selection-start-column="60" selection-end-line="136" selection-end-column="60" />
1170
1319
  </state>
1171
1320
  </provider>
1172
1321
  </entry>
1173
- <entry file="file://$PROJECT_DIR$/src/mathjax/index.ts">
1322
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts">
1174
1323
  <provider selected="true" editor-type-id="text-editor">
1175
- <state relative-caret-position="3795">
1176
- <caret line="253" column="67" selection-start-line="253" selection-start-column="55" selection-end-line="253" selection-end-column="67" />
1324
+ <state relative-caret-position="5415">
1325
+ <caret line="361" column="7" selection-start-line="361" selection-start-column="7" selection-end-line="361" selection-end-column="7" />
1177
1326
  <folding>
1178
- <element signature="e#0#50#0" expanded="true" />
1327
+ <element signature="e#0#40#0" expanded="true" />
1179
1328
  </folding>
1180
1329
  </state>
1181
1330
  </provider>
1182
1331
  </entry>
1183
- <entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts">
1332
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdSetPositionsAndHighlight.ts">
1184
1333
  <provider selected="true" editor-type-id="text-editor">
1185
- <state relative-caret-position="4545">
1186
- <caret line="303" column="12" selection-start-line="303" selection-start-column="12" selection-end-line="303" selection-end-column="26" />
1334
+ <state relative-caret-position="360">
1335
+ <caret line="24" column="47" selection-start-line="24" selection-start-column="47" selection-end-line="24" selection-end-column="47" />
1187
1336
  <folding>
1188
- <element signature="e#0#40#0" expanded="true" />
1337
+ <element signature="e#0#41#0" expanded="true" />
1189
1338
  </folding>
1190
1339
  </state>
1191
1340
  </provider>
1192
1341
  </entry>
1193
- <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts">
1342
+ <entry file="file://$PROJECT_DIR$/src/components/mathpix-markdown/index.tsx">
1194
1343
  <provider selected="true" editor-type-id="text-editor">
1195
- <state relative-caret-position="2820">
1196
- <caret line="195" column="36" selection-start-line="195" selection-start-column="36" selection-end-line="195" selection-end-column="36" />
1344
+ <state relative-caret-position="765">
1345
+ <caret line="52" selection-start-line="52" selection-end-line="52" />
1197
1346
  </state>
1198
1347
  </provider>
1199
1348
  </entry>
1200
- <entry file="file://$PROJECT_DIR$/tests/_data/_table-markdown/_data.js">
1349
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/inline-rule.ts">
1201
1350
  <provider selected="true" editor-type-id="text-editor">
1202
- <state relative-caret-position="13740">
1203
- <caret line="916" column="6" selection-start-line="916" selection-start-column="6" selection-end-line="916" selection-end-column="6" />
1351
+ <state relative-caret-position="4410">
1352
+ <caret line="309" column="20" selection-start-line="309" selection-start-column="15" selection-end-line="309" selection-end-column="20" />
1204
1353
  </state>
1205
1354
  </provider>
1206
1355
  </entry>
1207
- <entry file="file://$PROJECT_DIR$/tests/_tsv.js">
1356
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/base/BaseMappings.ts">
1208
1357
  <provider selected="true" editor-type-id="text-editor">
1209
- <state relative-caret-position="3750">
1210
- <caret line="250" selection-start-line="250" selection-end-line="250" />
1358
+ <state relative-caret-position="9330">
1359
+ <caret line="626" column="8" selection-start-line="626" selection-start-column="2" selection-end-line="626" selection-end-column="8" />
1211
1360
  </state>
1212
1361
  </provider>
1213
1362
  </entry>
1214
- <entry file="file://$PROJECT_DIR$/tests/_tsv_with_array.js">
1363
+ <entry file="file://$PROJECT_DIR$/src/styles/styles-code.ts">
1215
1364
  <provider selected="true" editor-type-id="text-editor">
1216
- <state relative-caret-position="885">
1217
- <caret line="59" column="7" selection-start-line="59" selection-start-column="7" selection-end-line="59" selection-end-column="7" />
1365
+ <state relative-caret-position="120">
1366
+ <caret line="8" column="57" selection-start-line="8" selection-start-column="57" selection-end-line="8" selection-end-column="57" />
1218
1367
  </state>
1219
1368
  </provider>
1220
1369
  </entry>
1221
- <entry file="file://$PROJECT_DIR$/tests/_data/_tsv/_data.js">
1222
- <provider selected="true" editor-type-id="text-editor" />
1370
+ <entry file="file://$PROJECT_DIR$/src/markdown/mathpix-markdown-plugins.tsx">
1371
+ <provider selected="true" editor-type-id="text-editor">
1372
+ <state relative-caret-position="180">
1373
+ <caret line="12" column="15" selection-start-line="12" selection-start-column="15" selection-end-line="12" selection-end-column="15" />
1374
+ </state>
1375
+ </provider>
1223
1376
  </entry>
1224
- <entry file="file://$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_include_sub_math.js">
1377
+ <entry file="file://$PROJECT_DIR$/src/markdown/index.ts">
1225
1378
  <provider selected="true" editor-type-id="text-editor">
1226
- <state relative-caret-position="6045">
1227
- <caret line="403" column="80" selection-start-line="403" selection-start-column="80" selection-end-line="403" selection-end-column="80" />
1379
+ <state relative-caret-position="450">
1380
+ <caret line="30" column="33" selection-start-line="30" selection-start-column="33" selection-end-line="30" selection-end-column="33" />
1381
+ <folding>
1382
+ <element signature="e#0#87#0" expanded="true" />
1383
+ </folding>
1228
1384
  </state>
1229
1385
  </provider>
1230
1386
  </entry>
1231
- <entry file="file://$PROJECT_DIR$/README.md">
1232
- <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
1233
- <state split_layout="FIRST">
1234
- <first_editor relative-caret-position="11580">
1235
- <caret line="772" selection-start-line="772" selection-end-line="772" />
1236
- </first_editor>
1237
- <second_editor />
1387
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-ascii/index.ts">
1388
+ <provider selected="true" editor-type-id="text-editor">
1389
+ <state relative-caret-position="200">
1390
+ <caret line="111" column="35" selection-start-line="111" selection-start-column="35" selection-end-line="111" selection-end-column="35" />
1238
1391
  </state>
1239
1392
  </provider>
1240
1393
  </entry>
1241
- <entry file="file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts">
1394
+ <entry file="file://$PROJECT_DIR$/src/mathjax/index.ts">
1242
1395
  <provider selected="true" editor-type-id="text-editor">
1243
- <state relative-caret-position="2685">
1244
- <caret line="184" column="4" selection-start-line="184" selection-start-column="4" selection-end-line="184" selection-end-column="4" />
1396
+ <state relative-caret-position="5775">
1397
+ <caret line="385" column="11" selection-start-line="385" selection-start-column="11" selection-end-line="385" selection-end-column="11" />
1245
1398
  <folding>
1246
- <element signature="e#0#45#0" expanded="true" />
1399
+ <element signature="e#0#50#0" expanded="true" />
1247
1400
  </folding>
1248
1401
  </state>
1249
1402
  </provider>
1250
1403
  </entry>
1251
- <entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts">
1404
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/adaptors/lite/Element.d.ts">
1252
1405
  <provider selected="true" editor-type-id="text-editor">
1253
- <state relative-caret-position="210">
1254
- <caret line="14" column="34" selection-start-line="14" selection-start-column="34" selection-end-line="14" selection-end-column="34" />
1406
+ <state>
1255
1407
  <folding>
1256
- <element signature="e#0#40#0" expanded="true" />
1408
+ <element signature="e#0#51#0" expanded="true" />
1257
1409
  </folding>
1258
1410
  </state>
1259
1411
  </provider>
1260
1412
  </entry>
1261
- <entry file="file://$PROJECT_DIR$/package.json">
1413
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/adaptors/liteAdaptor.ts">
1262
1414
  <provider selected="true" editor-type-id="text-editor">
1263
- <state relative-caret-position="240">
1264
- <caret line="16" column="13" selection-start-line="16" selection-start-column="13" selection-end-line="16" selection-end-column="13" />
1415
+ <state relative-caret-position="375">
1416
+ <caret line="25" column="29" selection-start-line="25" selection-start-column="21" selection-end-line="25" selection-end-column="29" />
1265
1417
  </state>
1266
1418
  </provider>
1267
1419
  </entry>
1268
- <entry file="file://$PROJECT_DIR$/src/styles/styles-fonts.ts">
1420
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/output/svg.ts">
1269
1421
  <provider selected="true" editor-type-id="text-editor">
1270
- <state relative-caret-position="90">
1271
- <caret line="7" selection-start-line="7" selection-end-line="7" />
1422
+ <state relative-caret-position="4545">
1423
+ <caret line="303" column="18" selection-start-line="303" selection-start-column="18" selection-end-line="303" selection-end-column="29" />
1424
+ <folding>
1425
+ <element signature="e#795#849#0" expanded="true" />
1426
+ </folding>
1272
1427
  </state>
1273
1428
  </provider>
1274
1429
  </entry>
1275
- <entry file="file://$PROJECT_DIR$/src/styles/styles-code.ts">
1430
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/output/common/OutputJax.ts">
1276
1431
  <provider selected="true" editor-type-id="text-editor">
1277
- <state relative-caret-position="120">
1278
- <caret line="8" column="6" selection-start-line="8" selection-start-column="6" selection-end-line="8" selection-end-column="11" />
1432
+ <state relative-caret-position="7005">
1433
+ <caret line="479" column="34" selection-start-line="479" selection-start-column="34" selection-end-line="479" selection-end-column="34" />
1279
1434
  </state>
1280
1435
  </provider>
1281
1436
  </entry>
1282
- <entry file="file://$PROJECT_DIR$/src/contex-menu/menu/menu-item.ts">
1437
+ <entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
1283
1438
  <provider selected="true" editor-type-id="text-editor">
1284
- <state relative-caret-position="495">
1285
- <caret line="34" column="44" selection-start-line="34" selection-start-column="44" selection-end-line="34" selection-end-column="44" />
1439
+ <state relative-caret-position="20235">
1440
+ <caret line="1349" selection-start-line="1349" selection-end-line="1349" />
1441
+ <folding>
1442
+ <element signature="e#147#220#0" expanded="true" />
1443
+ </folding>
1286
1444
  </state>
1287
1445
  </provider>
1288
1446
  </entry>
1289
- <entry file="file://$PROJECT_DIR$/src/contex-menu/menu/menu-item-actions.ts">
1447
+ <entry file="file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts">
1290
1448
  <provider selected="true" editor-type-id="text-editor">
1291
- <state relative-caret-position="855">
1292
- <caret line="57" selection-start-line="57" selection-end-line="58" />
1293
- <folding>
1294
- <element signature="e#0#42#0" expanded="true" />
1295
- </folding>
1449
+ <state relative-caret-position="2265">
1450
+ <caret line="165" column="38" selection-start-line="165" selection-start-column="38" selection-end-line="165" selection-end-column="38" />
1451
+ </state>
1452
+ </provider>
1453
+ </entry>
1454
+ <entry file="file://$PROJECT_DIR$/src/markdown/highlight/render-rule-highlights.ts">
1455
+ <provider selected="true" editor-type-id="text-editor">
1456
+ <state relative-caret-position="1395">
1457
+ <caret line="99" column="27" selection-start-line="99" selection-start-column="27" selection-end-line="99" selection-end-column="27" />
1296
1458
  </state>
1297
1459
  </provider>
1298
1460
  </entry>
1299
- <entry file="file://$PROJECT_DIR$/src/contex-menu/menu/menu-items.ts">
1461
+ <entry file="file://$PROJECT_DIR$/tests/_image.js">
1462
+ <provider selected="true" editor-type-id="text-editor">
1463
+ <state relative-caret-position="240">
1464
+ <caret line="16" selection-start-line="16" selection-end-line="16" />
1465
+ </state>
1466
+ </provider>
1467
+ </entry>
1468
+ <entry file="file://$PROJECT_DIR$/tests/_data/_image/_data.js">
1469
+ <provider selected="true" editor-type-id="text-editor" />
1470
+ </entry>
1471
+ <entry file="file://$PROJECT_DIR$/src/index.tsx">
1300
1472
  <provider selected="true" editor-type-id="text-editor">
1301
- <state relative-caret-position="105">
1302
- <caret line="7" column="36" selection-start-line="7" selection-start-column="36" selection-end-line="7" selection-end-column="36" />
1473
+ <state relative-caret-position="780">
1474
+ <caret line="52" column="13" selection-start-line="52" selection-start-column="13" selection-end-line="52" selection-end-column="13" />
1303
1475
  <folding>
1304
- <element signature="e#0#43#0" expanded="true" />
1476
+ <element signature="e#0#56#0" expanded="true" />
1305
1477
  </folding>
1306
1478
  </state>
1307
1479
  </provider>
1308
1480
  </entry>
1309
- <entry file="file://$PROJECT_DIR$/src/helpers/parse-mmd-element.ts">
1481
+ <entry file="file://$PROJECT_DIR$/src/styles/index.ts">
1482
+ <provider selected="true" editor-type-id="text-editor">
1483
+ <state relative-caret-position="1230">
1484
+ <caret line="82" column="4" selection-start-line="82" selection-start-column="4" selection-end-line="82" selection-end-column="4" />
1485
+ </state>
1486
+ </provider>
1487
+ </entry>
1488
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/output/common/FontData.ts">
1489
+ <provider selected="true" editor-type-id="text-editor">
1490
+ <state relative-caret-position="4620">
1491
+ <caret line="309" column="16" selection-start-line="309" selection-start-column="8" selection-end-line="309" selection-end-column="16" />
1492
+ </state>
1493
+ </provider>
1494
+ </entry>
1495
+ <entry file="file://$PROJECT_DIR$/package.json">
1496
+ <provider selected="true" editor-type-id="text-editor">
1497
+ <state relative-caret-position="30">
1498
+ <caret line="2" column="19" selection-start-line="2" selection-start-column="19" selection-end-line="2" selection-end-column="19" />
1499
+ </state>
1500
+ </provider>
1501
+ </entry>
1502
+ <entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/output/svg.js">
1310
1503
  <provider selected="true" editor-type-id="text-editor">
1311
- <state relative-caret-position="330">
1312
- <caret line="22" column="14" selection-start-line="22" selection-start-column="14" selection-end-line="22" selection-end-column="15" />
1504
+ <state relative-caret-position="1665">
1505
+ <caret line="111" column="54" selection-start-line="111" selection-start-column="54" selection-end-line="111" selection-end-column="54" />
1313
1506
  </state>
1314
1507
  </provider>
1315
1508
  </entry>
1316
- <entry file="file://$PROJECT_DIR$/tests/_csv.js">
1509
+ <entry file="file://$PROJECT_DIR$/src/markdown/highlight/highlight-math-token.ts">
1317
1510
  <provider selected="true" editor-type-id="text-editor">
1318
- <state relative-caret-position="510">
1319
- <caret line="34" column="41" selection-start-line="34" selection-start-column="22" selection-end-line="34" selection-end-column="41" />
1511
+ <state relative-caret-position="264">
1512
+ <caret line="250" column="5" selection-start-line="250" selection-start-column="5" selection-end-line="250" selection-end-column="5" />
1320
1513
  </state>
1321
1514
  </provider>
1322
1515
  </entry>
1323
- <entry file="file://$PROJECT_DIR$/lib/mathpix-markdown-model/index.d.ts">
1516
+ <entry file="file://$PROJECT_DIR$/src/markdown/highlight/common.ts">
1324
1517
  <provider selected="true" editor-type-id="text-editor">
1325
- <state relative-caret-position="2040">
1326
- <caret line="137" column="35" selection-start-line="137" selection-start-column="35" selection-end-line="137" selection-end-column="35" />
1518
+ <state relative-caret-position="435">
1519
+ <caret line="32" column="2" selection-start-line="32" selection-start-column="2" selection-end-line="32" selection-end-column="2" />
1327
1520
  </state>
1328
1521
  </provider>
1329
1522
  </entry>
1330
- <entry file="file://$PROJECT_DIR$/src/styles/styles-tabular.ts">
1523
+ <entry file="file://$PROJECT_DIR$/tests/_data/_highlights/_data.js">
1331
1524
  <provider selected="true" editor-type-id="text-editor">
1332
- <state relative-caret-position="536">
1333
- <caret line="36" column="25" selection-start-line="36" selection-start-column="25" selection-end-line="36" selection-end-column="25" />
1525
+ <state relative-caret-position="472">
1526
+ <caret line="163" column="7" selection-start-line="163" selection-start-column="7" selection-end-line="163" selection-end-column="7" />
1527
+ <folding>
1528
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
1529
+ <element signature="n#style#0;n#span#1;n#div#0;n#!!top" expanded="true" />
1530
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
1531
+ <element signature="n#style#0;n#span#0;n#code#0;n#div#0;n#!!top" expanded="true" />
1532
+ <element signature="n#style#0;n#span#1;n#code#0;n#div#0;n#!!top" expanded="true" />
1533
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
1534
+ <element signature="n#style#0;n#span#1;n#div#0;n#!!top" expanded="true" />
1535
+ <element signature="n#style#0;n#span#2;n#div#0;n#!!top" expanded="true" />
1536
+ <element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#2;n#div#0;n#!!top" expanded="true" />
1537
+ <element signature="n#style#0;n#span#3;n#div#0;n#!!top" expanded="true" />
1538
+ <element signature="n#style#0;n#span#4;n#div#0;n#!!top" expanded="true" />
1539
+ <element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#4;n#div#0;n#!!top" expanded="true" />
1540
+ <element signature="n#style#0;n#span#5;n#div#0;n#!!top" expanded="true" />
1541
+ <element signature="n#style#0;n#span#6;n#div#0;n#!!top" expanded="true" />
1542
+ <element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#6;n#div#0;n#!!top" expanded="true" />
1543
+ <element signature="n#style#0;n#span#7;n#div#0;n#!!top" expanded="true" />
1544
+ <element signature="n#style#0;n#span#8;n#div#0;n#!!top" expanded="true" />
1545
+ <element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#8;n#div#0;n#!!top" expanded="true" />
1546
+ <element signature="n#style#0;n#span#9;n#div#0;n#!!top" expanded="true" />
1547
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
1548
+ <element signature="n#style#0;n#span#1;n#div#0;n#!!top" expanded="true" />
1549
+ <element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#1;n#div#0;n#!!top" expanded="true" />
1550
+ <element signature="n#style#0;n#span#2;n#div#0;n#!!top" expanded="true" />
1551
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
1552
+ <element signature="n#style#0;n#span#1;n#div#0;n#!!top" expanded="true" />
1553
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
1554
+ <element signature="n#style#0;n#span#1;n#div#0;n#!!top" expanded="true" />
1555
+ <element signature="n#style#0;n#span#0;n#div#0;n#!!top" expanded="true" />
1556
+ </folding>
1557
+ </state>
1558
+ </provider>
1559
+ </entry>
1560
+ <entry file="file://$PROJECT_DIR$/tests/_highlights.js">
1561
+ <provider selected="true" editor-type-id="text-editor">
1562
+ <state relative-caret-position="285">
1563
+ <caret line="19" column="66" selection-start-line="19" selection-start-column="66" selection-end-line="19" selection-end-column="66" />
1564
+ </state>
1565
+ </provider>
1566
+ </entry>
1567
+ <entry file="file://$PROJECT_DIR$/src/markdown/md-core-rules/set-positions.ts">
1568
+ <provider selected="true" editor-type-id="text-editor">
1569
+ <state relative-caret-position="292">
1570
+ <caret line="287" column="2" selection-start-line="287" selection-start-column="2" selection-end-line="287" selection-end-column="2" />
1571
+ <folding>
1572
+ <element signature="e#0#71#0" expanded="true" />
1573
+ </folding>
1334
1574
  </state>
1335
1575
  </provider>
1336
1576
  </entry>