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