mathpix-markdown-it 1.0.83 → 1.0.85
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/vcs.xml +1 -0
- package/.idea/workspace.xml +588 -455
- package/README.md +2 -2
- package/doc/images/sections/section_01.png +0 -0
- package/doc/images/sections/section_02.png +0 -0
- package/doc/images/sections/section_03.png +0 -0
- package/doc/images/sections/section_04.png +0 -0
- package/doc/sections.md +103 -0
- package/es5/bundle.js +1 -1
- package/es5/context-menu.js +1 -1
- package/es5/index.js +1 -1
- package/lib/contex-menu/index.js +8 -8
- package/lib/contex-menu/index.js.map +1 -1
- package/lib/contex-menu/menu/consts.d.ts +6 -1
- package/lib/contex-menu/menu/consts.js +15 -2
- package/lib/contex-menu/menu/consts.js.map +1 -1
- package/lib/contex-menu/menu/helper.d.ts +2 -1
- package/lib/contex-menu/menu/helper.js +25 -7
- package/lib/contex-menu/menu/helper.js.map +1 -1
- package/lib/contex-menu/menu/menu-item-actions.js +1 -1
- package/lib/contex-menu/menu/menu-item-actions.js.map +1 -1
- package/lib/contex-menu/menu/menu-item.js +12 -0
- package/lib/contex-menu/menu/menu-item.js.map +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.js +2 -1
- package/lib/index.js.map +1 -1
- package/lib/markdown/common/consts.d.ts +11 -0
- package/lib/markdown/common/consts.js +12 -1
- package/lib/markdown/common/consts.js.map +1 -1
- package/lib/markdown/common/tsv.js +4 -2
- package/lib/markdown/common/tsv.js.map +1 -1
- package/lib/markdown/common.d.ts +30 -0
- package/lib/markdown/common.js +76 -1
- package/lib/markdown/common.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/index.d.ts +1 -0
- package/lib/markdown/md-block-rule/begin-tabular/index.js +1 -0
- package/lib/markdown/md-block-rule/begin-tabular/index.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/multi-column-row.js +23 -4
- package/lib/markdown/md-block-rule/begin-tabular/multi-column-row.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/sub-math.d.ts +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/sub-math.js +16 -7
- package/lib/markdown/md-block-rule/begin-tabular/sub-math.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/tabular-td.js +2 -1
- package/lib/markdown/md-block-rule/begin-tabular/tabular-td.js.map +1 -1
- package/lib/markdown/md-inline-rule/setcounter-section.d.ts +6 -0
- package/lib/markdown/md-inline-rule/setcounter-section.js +47 -0
- package/lib/markdown/md-inline-rule/setcounter-section.js.map +1 -0
- package/lib/markdown/md-renderer-rules/render-tabular.js +1 -1
- package/lib/markdown/md-renderer-rules/render-tabular.js.map +1 -1
- package/lib/markdown/md-theorem/block-rule.js +23 -8
- package/lib/markdown/md-theorem/block-rule.js.map +1 -1
- package/lib/markdown/md-theorem/index.js +6 -2
- package/lib/markdown/md-theorem/index.js.map +1 -1
- package/lib/markdown/md-theorem/inline-rule.js +106 -53
- package/lib/markdown/md-theorem/inline-rule.js.map +1 -1
- package/lib/markdown/mdPluginRaw.js +42 -1
- package/lib/markdown/mdPluginRaw.js.map +1 -1
- package/lib/markdown/mdPluginTOC.d.ts +14 -0
- package/lib/markdown/mdPluginTOC.js +105 -96
- package/lib/markdown/mdPluginTOC.js.map +1 -1
- package/lib/markdown/mdPluginText.d.ts +7 -1
- package/lib/markdown/mdPluginText.js +248 -105
- package/lib/markdown/mdPluginText.js.map +1 -1
- package/lib/markdown/rules.js +6 -5
- package/lib/markdown/rules.js.map +1 -1
- package/lib/markdown/test.d.ts +0 -0
- package/lib/markdown/test.js +399 -0
- package/lib/markdown/test.js.map +1 -0
- package/lib/mathjax/helpers/array/ArrayConfiguration.d.ts +6 -0
- package/lib/mathjax/helpers/array/ArrayConfiguration.js +14 -0
- package/lib/mathjax/helpers/array/ArrayConfiguration.js.map +1 -0
- package/lib/mathjax/helpers/array/ArrayMappings.d.ts +1 -0
- package/lib/mathjax/helpers/array/ArrayMappings.js +12 -0
- package/lib/mathjax/helpers/array/ArrayMappings.js.map +1 -0
- package/lib/mathjax/helpers/array/ArrayMethods.d.ts +6 -0
- package/lib/mathjax/helpers/array/ArrayMethods.js +28 -0
- package/lib/mathjax/helpers/array/ArrayMethods.js.map +1 -0
- package/lib/mathjax/index.d.ts +2 -0
- package/lib/mathjax/index.js +45 -8
- package/lib/mathjax/index.js.map +1 -1
- package/lib/mathjax/mathjax.d.ts +4 -0
- package/lib/mathjax/mathjax.js +12 -0
- package/lib/mathjax/mathjax.js.map +1 -1
- package/lib/mathjax/serialized-ascii/handlers.d.ts +2 -0
- package/lib/mathjax/serialized-ascii/handlers.js +246 -48
- package/lib/mathjax/serialized-ascii/handlers.js.map +1 -1
- package/lib/mathjax/serialized-ascii/helperA.d.ts +46 -0
- package/lib/mathjax/serialized-ascii/helperA.js +135 -124
- package/lib/mathjax/serialized-ascii/helperA.js.map +1 -1
- package/lib/mathjax/serialized-ascii/index.d.ts +3 -0
- package/lib/mathjax/serialized-ascii/index.js +43 -5
- package/lib/mathjax/serialized-ascii/index.js.map +1 -1
- package/lib/mathpix-markdown-model/index.d.ts +2 -1
- package/lib/mathpix-markdown-model/index.js +6 -1
- 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/package.json +1 -1
package/.idea/workspace.xml
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
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/
|
|
5
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/
|
|
6
|
-
<bookmark url="file://$PROJECT_DIR$/
|
|
4
|
+
<bookmark url="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts" line="448" mnemonic="5" />
|
|
5
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" line="986" mnemonic="0" />
|
|
6
|
+
<bookmark url="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex.ts" line="151" mnemonic="9" />
|
|
7
|
+
<bookmark url="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/base/BaseMappings.ts" line="658" mnemonic="7" />
|
|
8
|
+
<bookmark url="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree/SerializedMmlVisitor.ts" line="128" mnemonic="6" />
|
|
9
|
+
<bookmark url="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/FilterUtil.ts" line="67" mnemonic="8" />
|
|
10
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/multi-column-row.ts" line="62" mnemonic="1" />
|
|
11
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/multi-column-row.ts" line="79" mnemonic="2" />
|
|
12
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts" line="49" mnemonic="3" />
|
|
7
13
|
</component>
|
|
8
14
|
<component name="ChangeListManager">
|
|
9
15
|
<list default="true" id="57194d73-380e-4999-b7f4-281db5a1b6dc" name="Default Changelist" comment="" />
|
|
@@ -21,91 +27,99 @@
|
|
|
21
27
|
<session id="1706553226">
|
|
22
28
|
<usages-collector id="statistics.lifecycle.project">
|
|
23
29
|
<counts>
|
|
24
|
-
<entry key="project.closed" value="
|
|
30
|
+
<entry key="project.closed" value="97" />
|
|
25
31
|
<entry key="project.open.time.10" value="5" />
|
|
26
32
|
<entry key="project.open.time.11" value="5" />
|
|
27
|
-
<entry key="project.open.time.12" value="
|
|
28
|
-
<entry key="project.open.time.13" value="
|
|
29
|
-
<entry key="project.open.time.14" value="
|
|
33
|
+
<entry key="project.open.time.12" value="4" />
|
|
34
|
+
<entry key="project.open.time.13" value="10" />
|
|
35
|
+
<entry key="project.open.time.14" value="3" />
|
|
30
36
|
<entry key="project.open.time.15" value="1" />
|
|
31
37
|
<entry key="project.open.time.17" value="1" />
|
|
32
38
|
<entry key="project.open.time.18" value="3" />
|
|
33
39
|
<entry key="project.open.time.19" value="1" />
|
|
34
|
-
<entry key="project.open.time.2" value="
|
|
35
|
-
<entry key="project.open.time.20" value="
|
|
36
|
-
<entry key="project.open.time.22" value="
|
|
37
|
-
<entry key="project.open.time.3" value="
|
|
40
|
+
<entry key="project.open.time.2" value="4" />
|
|
41
|
+
<entry key="project.open.time.20" value="2" />
|
|
42
|
+
<entry key="project.open.time.22" value="3" />
|
|
43
|
+
<entry key="project.open.time.3" value="17" />
|
|
38
44
|
<entry key="project.open.time.30" value="1" />
|
|
39
45
|
<entry key="project.open.time.31" value="1" />
|
|
40
46
|
<entry key="project.open.time.32" value="1" />
|
|
41
47
|
<entry key="project.open.time.34" value="1" />
|
|
42
|
-
<entry key="project.open.time.4" value="
|
|
48
|
+
<entry key="project.open.time.4" value="21" />
|
|
43
49
|
<entry key="project.open.time.48" value="1" />
|
|
44
|
-
<entry key="project.open.time.5" value="
|
|
50
|
+
<entry key="project.open.time.5" value="11" />
|
|
45
51
|
<entry key="project.open.time.6" value="7" />
|
|
46
|
-
<entry key="project.open.time.7" value="
|
|
47
|
-
<entry key="project.open.time.9" value="
|
|
48
|
-
<entry key="project.opened" value="
|
|
52
|
+
<entry key="project.open.time.7" value="6" />
|
|
53
|
+
<entry key="project.open.time.9" value="2" />
|
|
54
|
+
<entry key="project.opened" value="113" />
|
|
49
55
|
</counts>
|
|
50
56
|
</usages-collector>
|
|
51
57
|
<usages-collector id="statistics.js.language.service.starts">
|
|
52
58
|
<counts>
|
|
53
|
-
<entry key="TypeScriptServerServiceImpl" value="
|
|
59
|
+
<entry key="TypeScriptServerServiceImpl" value="108" />
|
|
54
60
|
</counts>
|
|
55
61
|
</usages-collector>
|
|
56
62
|
<usages-collector id="statistics.file.extensions.open">
|
|
57
63
|
<counts>
|
|
58
64
|
<entry key="babelrc" value="1" />
|
|
59
|
-
<entry key="
|
|
60
|
-
<entry key="
|
|
61
|
-
<entry key="
|
|
62
|
-
<entry key="
|
|
63
|
-
<entry key="
|
|
64
|
-
<entry key="
|
|
65
|
+
<entry key="css" value="3" />
|
|
66
|
+
<entry key="ejs" value="1" />
|
|
67
|
+
<entry key="env" value="3" />
|
|
68
|
+
<entry key="gif" value="1" />
|
|
69
|
+
<entry key="gitignore" value="6" />
|
|
70
|
+
<entry key="html" value="10" />
|
|
71
|
+
<entry key="js" value="285" />
|
|
72
|
+
<entry key="json" value="45" />
|
|
73
|
+
<entry key="jsx" value="18" />
|
|
65
74
|
<entry key="lock" value="8" />
|
|
66
|
-
<entry key="md" value="
|
|
75
|
+
<entry key="md" value="39" />
|
|
67
76
|
<entry key="png" value="1" />
|
|
68
77
|
<entry key="sre" value="1" />
|
|
69
|
-
<entry key="ts" value="
|
|
70
|
-
<entry key="tsx" value="
|
|
78
|
+
<entry key="ts" value="733" />
|
|
79
|
+
<entry key="tsx" value="31" />
|
|
71
80
|
</counts>
|
|
72
81
|
</usages-collector>
|
|
73
82
|
<usages-collector id="statistics.file.types.open">
|
|
74
83
|
<counts>
|
|
75
|
-
<entry key=".env file" value="
|
|
76
|
-
<entry key="
|
|
77
|
-
<entry key="
|
|
78
|
-
<entry key="
|
|
79
|
-
<entry key="
|
|
80
|
-
<entry key="
|
|
81
|
-
<entry key="
|
|
82
|
-
<entry key="
|
|
83
|
-
<entry key="
|
|
84
|
-
<entry key="
|
|
85
|
-
<entry key="
|
|
84
|
+
<entry key=".env file" value="3" />
|
|
85
|
+
<entry key="CSS" value="3" />
|
|
86
|
+
<entry key="EJS" value="1" />
|
|
87
|
+
<entry key="HTML" value="10" />
|
|
88
|
+
<entry key="Image" value="2" />
|
|
89
|
+
<entry key="JSON" value="43" />
|
|
90
|
+
<entry key="JSX Harmony" value="18" />
|
|
91
|
+
<entry key="JavaScript" value="286" />
|
|
92
|
+
<entry key="Markdown" value="39" />
|
|
93
|
+
<entry key="PLAIN_TEXT" value="7" />
|
|
94
|
+
<entry key="TypeScript" value="733" />
|
|
95
|
+
<entry key="TypeScript JSX" value="31" />
|
|
96
|
+
<entry key="tsconfig" value="3" />
|
|
86
97
|
<entry key="yarn.lock" value="7" />
|
|
87
98
|
</counts>
|
|
88
99
|
</usages-collector>
|
|
89
100
|
<usages-collector id="statistics.file.extensions.edit">
|
|
90
101
|
<counts>
|
|
91
|
-
<entry key="
|
|
92
|
-
<entry key="
|
|
93
|
-
<entry key="
|
|
94
|
-
<entry key="
|
|
95
|
-
<entry key="
|
|
96
|
-
<entry key="
|
|
97
|
-
<entry key="
|
|
102
|
+
<entry key="css" value="98" />
|
|
103
|
+
<entry key="html" value="27" />
|
|
104
|
+
<entry key="js" value="8048" />
|
|
105
|
+
<entry key="json" value="58" />
|
|
106
|
+
<entry key="jsx" value="1188" />
|
|
107
|
+
<entry key="md" value="2192" />
|
|
108
|
+
<entry key="ts" value="65114" />
|
|
109
|
+
<entry key="tsx" value="517" />
|
|
98
110
|
</counts>
|
|
99
111
|
</usages-collector>
|
|
100
112
|
<usages-collector id="statistics.file.types.edit">
|
|
101
113
|
<counts>
|
|
102
|
-
<entry key="
|
|
103
|
-
<entry key="
|
|
104
|
-
<entry key="
|
|
105
|
-
<entry key="
|
|
106
|
-
<entry key="
|
|
107
|
-
<entry key="
|
|
108
|
-
<entry key="TypeScript
|
|
114
|
+
<entry key="CSS" value="98" />
|
|
115
|
+
<entry key="HTML" value="102" />
|
|
116
|
+
<entry key="JSON" value="32" />
|
|
117
|
+
<entry key="JSX Harmony" value="1188" />
|
|
118
|
+
<entry key="JavaScript" value="8061" />
|
|
119
|
+
<entry key="Markdown" value="2112" />
|
|
120
|
+
<entry key="TypeScript" value="65106" />
|
|
121
|
+
<entry key="TypeScript JSX" value="517" />
|
|
122
|
+
<entry key="tsconfig" value="26" />
|
|
109
123
|
</counts>
|
|
110
124
|
</usages-collector>
|
|
111
125
|
</session>
|
|
@@ -114,15 +128,15 @@
|
|
|
114
128
|
<favorites_list name="mathpix-markdown-it" />
|
|
115
129
|
</component>
|
|
116
130
|
<component name="FileEditorManager">
|
|
117
|
-
<splitter split-orientation="horizontal" split-proportion="0.
|
|
131
|
+
<splitter split-orientation="horizontal" split-proportion="0.5538665">
|
|
118
132
|
<split-first>
|
|
119
133
|
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
120
134
|
<file pinned="false" current-in-tab="false">
|
|
121
135
|
<entry file="file://$PROJECT_DIR$/README.md">
|
|
122
136
|
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
123
137
|
<state split_layout="FIRST">
|
|
124
|
-
<first_editor relative-caret-position="
|
|
125
|
-
<caret line="
|
|
138
|
+
<first_editor relative-caret-position="148">
|
|
139
|
+
<caret line="211" column="19" selection-start-line="211" selection-start-column="15" selection-end-line="211" selection-end-column="19" />
|
|
126
140
|
</first_editor>
|
|
127
141
|
<second_editor />
|
|
128
142
|
</state>
|
|
@@ -130,85 +144,124 @@
|
|
|
130
144
|
</entry>
|
|
131
145
|
</file>
|
|
132
146
|
<file pinned="false" current-in-tab="false">
|
|
133
|
-
<entry file="file://$PROJECT_DIR$/
|
|
134
|
-
<provider selected="true" editor-type-id="images" />
|
|
135
|
-
</entry>
|
|
136
|
-
</file>
|
|
137
|
-
<file pinned="false" current-in-tab="false">
|
|
138
|
-
<entry file="file://$PROJECT_DIR$/tests/_data/_nonumbers/_data.js">
|
|
147
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree/OperatorDictionary.ts">
|
|
139
148
|
<provider selected="true" editor-type-id="text-editor">
|
|
140
|
-
<state>
|
|
141
|
-
<caret selection-end-line="
|
|
149
|
+
<state relative-caret-position="360">
|
|
150
|
+
<caret line="24" column="31" selection-start-line="24" selection-start-column="31" selection-end-line="24" selection-end-column="31" />
|
|
142
151
|
</state>
|
|
143
152
|
</provider>
|
|
144
153
|
</entry>
|
|
145
154
|
</file>
|
|
146
155
|
<file pinned="false" current-in-tab="false">
|
|
147
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
156
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/index.ts">
|
|
148
157
|
<provider selected="true" editor-type-id="text-editor">
|
|
149
|
-
<state relative-caret-position="
|
|
150
|
-
<caret line="
|
|
158
|
+
<state relative-caret-position="840">
|
|
159
|
+
<caret line="63" selection-start-line="63" selection-end-line="63" />
|
|
160
|
+
<folding>
|
|
161
|
+
<element signature="e#0#50#0" expanded="true" />
|
|
162
|
+
</folding>
|
|
151
163
|
</state>
|
|
152
164
|
</provider>
|
|
153
165
|
</entry>
|
|
154
166
|
</file>
|
|
155
167
|
<file pinned="false" current-in-tab="false">
|
|
156
|
-
<entry file="file://$PROJECT_DIR$/
|
|
168
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/core/MmlTree/MmlVisitor.d.ts">
|
|
157
169
|
<provider selected="true" editor-type-id="text-editor">
|
|
158
|
-
<state relative-caret-position="
|
|
159
|
-
<caret line="
|
|
170
|
+
<state relative-caret-position="90">
|
|
171
|
+
<caret line="8" selection-start-line="8" selection-end-line="8" />
|
|
160
172
|
</state>
|
|
161
173
|
</provider>
|
|
162
174
|
</entry>
|
|
163
175
|
</file>
|
|
164
|
-
<file pinned="false" current-in-tab="
|
|
165
|
-
<entry file="file://$PROJECT_DIR$/
|
|
176
|
+
<file pinned="false" current-in-tab="false">
|
|
177
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex.ts">
|
|
166
178
|
<provider selected="true" editor-type-id="text-editor">
|
|
167
|
-
<state relative-caret-position="
|
|
168
|
-
<caret line="
|
|
179
|
+
<state relative-caret-position="1965">
|
|
180
|
+
<caret line="146" column="43" selection-start-line="146" selection-start-column="43" selection-end-line="146" selection-end-column="43" />
|
|
181
|
+
<folding>
|
|
182
|
+
<element signature="e#794#847#0" expanded="true" />
|
|
183
|
+
</folding>
|
|
169
184
|
</state>
|
|
170
185
|
</provider>
|
|
171
186
|
</entry>
|
|
172
187
|
</file>
|
|
173
188
|
<file pinned="false" current-in-tab="false">
|
|
174
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
189
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/multi-column-row.ts">
|
|
175
190
|
<provider selected="true" editor-type-id="text-editor">
|
|
176
|
-
<state relative-caret-position="
|
|
177
|
-
<caret line="
|
|
191
|
+
<state relative-caret-position="744">
|
|
192
|
+
<caret line="95" selection-start-line="95" selection-end-line="95" />
|
|
178
193
|
<folding>
|
|
179
|
-
<element signature="
|
|
180
|
-
<element signature="n#!!block;n#inlineMathML#0" />
|
|
194
|
+
<element signature="e#0#54#0" expanded="true" />
|
|
181
195
|
</folding>
|
|
182
196
|
</state>
|
|
183
197
|
</provider>
|
|
184
198
|
</entry>
|
|
185
199
|
</file>
|
|
186
200
|
<file pinned="false" current-in-tab="false">
|
|
187
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
201
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts">
|
|
188
202
|
<provider selected="true" editor-type-id="text-editor">
|
|
189
|
-
<state relative-caret-position="
|
|
190
|
-
<caret line="
|
|
191
|
-
<folding>
|
|
192
|
-
<element signature="e#0#59#0" expanded="true" />
|
|
193
|
-
</folding>
|
|
203
|
+
<state relative-caret-position="708">
|
|
204
|
+
<caret line="64" selection-start-line="64" selection-end-line="64" />
|
|
194
205
|
</state>
|
|
195
206
|
</provider>
|
|
196
207
|
</entry>
|
|
197
208
|
</file>
|
|
198
209
|
<file pinned="false" current-in-tab="false">
|
|
199
|
-
<entry file="file://$PROJECT_DIR$/
|
|
210
|
+
<entry file="file://$PROJECT_DIR$/tests/_tabular.js">
|
|
211
|
+
<provider selected="true" editor-type-id="text-editor" />
|
|
212
|
+
</entry>
|
|
213
|
+
</file>
|
|
214
|
+
<file pinned="false" current-in-tab="true">
|
|
215
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_tabular/_data.js">
|
|
200
216
|
<provider selected="true" editor-type-id="text-editor">
|
|
201
|
-
<state relative-caret-position="
|
|
202
|
-
<caret line="
|
|
217
|
+
<state relative-caret-position="-24">
|
|
218
|
+
<caret line="181" column="22" selection-start-line="181" selection-start-column="22" selection-end-line="181" selection-end-column="34" />
|
|
219
|
+
<folding>
|
|
220
|
+
<element signature="n#style#0;n#div#1;n#!!top" expanded="true" />
|
|
221
|
+
<element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#1;n#div#2;n#!!top" expanded="true" />
|
|
222
|
+
<element signature="e#18711#39243#0" />
|
|
223
|
+
<element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#2;n#div#2;n#!!top" expanded="true" />
|
|
224
|
+
<element signature="e#39247#52669#0" />
|
|
225
|
+
<element signature="n#style#0;n#div#0;n#!!top" expanded="true" />
|
|
226
|
+
<element signature="n#style#0;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
227
|
+
<element signature="n#style#0;n#td#0;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
228
|
+
<element signature="n#style#0;n#td#1;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
229
|
+
<element signature="n#style#0;n#td#2;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
230
|
+
<element signature="n#style#0;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
231
|
+
<element signature="n#style#0;n#td#0;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
232
|
+
<element signature="n#style#0;n#td#1;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
233
|
+
<element signature="n#style#0;n#td#2;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
234
|
+
<element signature="n#style#0;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
235
|
+
<element signature="n#style#0;n#td#0;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
236
|
+
<element signature="n#style#0;n#td#1;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
237
|
+
<element signature="n#style#0;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
238
|
+
<element signature="n#style#0;n#td#0;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
239
|
+
<element signature="n#style#0;n#td#1;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
240
|
+
<element signature="n#style#0;n#div#0;n#!!top" expanded="true" />
|
|
241
|
+
<element signature="n#style#0;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
242
|
+
<element signature="n#style#0;n#td#0;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
243
|
+
<element signature="n#style#0;n#td#1;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
244
|
+
<element signature="n#style#0;n#td#2;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
245
|
+
<element signature="n#style#0;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
246
|
+
<element signature="n#style#0;n#td#0;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
247
|
+
<element signature="n#style#0;n#td#1;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
248
|
+
<element signature="n#style#0;n#td#2;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
249
|
+
<element signature="n#style#0;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
250
|
+
<element signature="n#style#0;n#td#0;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
251
|
+
<element signature="n#style#0;n#td#1;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
252
|
+
<element signature="n#style#0;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
253
|
+
<element signature="n#style#0;n#td#0;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
254
|
+
<element signature="n#style#0;n#td#1;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
255
|
+
</folding>
|
|
203
256
|
</state>
|
|
204
257
|
</provider>
|
|
205
258
|
</entry>
|
|
206
259
|
</file>
|
|
207
260
|
<file pinned="false" current-in-tab="false">
|
|
208
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
261
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/common.ts">
|
|
209
262
|
<provider selected="true" editor-type-id="text-editor">
|
|
210
|
-
<state relative-caret-position="
|
|
211
|
-
<caret line="
|
|
263
|
+
<state relative-caret-position="75">
|
|
264
|
+
<caret line="5" column="13" selection-start-line="5" selection-start-column="13" selection-end-line="5" selection-end-column="13" />
|
|
212
265
|
</state>
|
|
213
266
|
</provider>
|
|
214
267
|
</entry>
|
|
@@ -218,112 +271,96 @@
|
|
|
218
271
|
<split-second>
|
|
219
272
|
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
220
273
|
<file pinned="false" current-in-tab="false">
|
|
221
|
-
<entry file="file://$PROJECT_DIR$/
|
|
274
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_ascii/_ascii_lcm.js">
|
|
222
275
|
<provider selected="true" editor-type-id="text-editor">
|
|
223
|
-
<state relative-caret-position="
|
|
224
|
-
<caret line="
|
|
225
|
-
<folding>
|
|
226
|
-
<element signature="e#0#41#0" expanded="true" />
|
|
227
|
-
</folding>
|
|
276
|
+
<state relative-caret-position="2160">
|
|
277
|
+
<caret line="144" column="2" selection-start-line="144" selection-start-column="2" selection-end-line="144" selection-end-column="2" />
|
|
228
278
|
</state>
|
|
229
279
|
</provider>
|
|
230
280
|
</entry>
|
|
231
281
|
</file>
|
|
232
|
-
<file pinned="false" current-in-tab="
|
|
233
|
-
<entry file="file://$PROJECT_DIR$/
|
|
282
|
+
<file pinned="false" current-in-tab="false">
|
|
283
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree/MmlNodes/mrow.ts">
|
|
234
284
|
<provider selected="true" editor-type-id="text-editor">
|
|
235
|
-
<state relative-caret-position="
|
|
236
|
-
<caret line="
|
|
285
|
+
<state relative-caret-position="360">
|
|
286
|
+
<caret line="24" column="42" selection-start-line="24" selection-start-column="34" selection-end-line="24" selection-end-column="42" />
|
|
237
287
|
</state>
|
|
238
288
|
</provider>
|
|
239
289
|
</entry>
|
|
240
290
|
</file>
|
|
241
291
|
<file pinned="false" current-in-tab="false">
|
|
242
|
-
<entry file="file://$PROJECT_DIR$/
|
|
292
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/ams/AmsMappings.ts">
|
|
243
293
|
<provider selected="true" editor-type-id="text-editor">
|
|
244
|
-
<state relative-caret-position="
|
|
245
|
-
<caret line="
|
|
294
|
+
<state relative-caret-position="135">
|
|
295
|
+
<caret line="108" selection-start-line="108" selection-end-line="108" />
|
|
246
296
|
</state>
|
|
247
297
|
</provider>
|
|
248
298
|
</entry>
|
|
249
299
|
</file>
|
|
250
300
|
<file pinned="false" current-in-tab="false">
|
|
251
|
-
<entry file="file://$PROJECT_DIR$/
|
|
301
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree/Attributes.ts">
|
|
252
302
|
<provider selected="true" editor-type-id="text-editor">
|
|
253
|
-
<state relative-caret-position="
|
|
254
|
-
<caret line="
|
|
255
|
-
<folding>
|
|
256
|
-
<element signature="n#style#0;n#div#0;n#!!top" expanded="true" />
|
|
257
|
-
</folding>
|
|
303
|
+
<state relative-caret-position="2220">
|
|
304
|
+
<caret line="148" column="5" selection-start-line="148" selection-start-column="5" selection-end-line="148" selection-end-column="5" />
|
|
258
305
|
</state>
|
|
259
306
|
</provider>
|
|
260
307
|
</entry>
|
|
261
308
|
</file>
|
|
262
309
|
<file pinned="false" current-in-tab="false">
|
|
263
|
-
<entry file="file://$PROJECT_DIR$/
|
|
310
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_ascii/_asciiData.js">
|
|
264
311
|
<provider selected="true" editor-type-id="text-editor">
|
|
265
|
-
<state relative-caret-position="
|
|
266
|
-
<caret line="
|
|
267
|
-
<folding>
|
|
268
|
-
<element signature="e#0#56#0" expanded="true" />
|
|
269
|
-
</folding>
|
|
312
|
+
<state relative-caret-position="3645">
|
|
313
|
+
<caret line="243" column="38" selection-start-line="243" selection-start-column="38" selection-end-line="243" selection-end-column="38" />
|
|
270
314
|
</state>
|
|
271
315
|
</provider>
|
|
272
316
|
</entry>
|
|
273
317
|
</file>
|
|
274
318
|
<file pinned="false" current-in-tab="false">
|
|
275
|
-
<entry file="file://$PROJECT_DIR$/
|
|
319
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/helperA.ts">
|
|
276
320
|
<provider selected="true" editor-type-id="text-editor">
|
|
277
|
-
<state relative-caret-position="
|
|
278
|
-
<caret line="
|
|
321
|
+
<state relative-caret-position="1500">
|
|
322
|
+
<caret line="100" column="39" selection-start-line="100" selection-start-column="39" selection-end-line="100" selection-end-column="39" />
|
|
279
323
|
</state>
|
|
280
324
|
</provider>
|
|
281
325
|
</entry>
|
|
282
326
|
</file>
|
|
283
327
|
<file pinned="false" current-in-tab="false">
|
|
284
|
-
<entry file="file://$PROJECT_DIR$/
|
|
328
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree/MmlNode.ts">
|
|
285
329
|
<provider selected="true" editor-type-id="text-editor">
|
|
286
|
-
<state relative-caret-position="
|
|
287
|
-
<caret line="
|
|
288
|
-
<folding>
|
|
289
|
-
<element signature="e#0#64#0" expanded="true" />
|
|
290
|
-
</folding>
|
|
330
|
+
<state relative-caret-position="7875">
|
|
331
|
+
<caret line="528" column="33" selection-start-line="528" selection-start-column="11" selection-end-line="528" selection-end-column="33" />
|
|
291
332
|
</state>
|
|
292
333
|
</provider>
|
|
293
334
|
</entry>
|
|
294
335
|
</file>
|
|
295
336
|
<file pinned="false" current-in-tab="false">
|
|
296
|
-
<entry file="file://$PROJECT_DIR$/
|
|
337
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/Tree/Node.ts">
|
|
297
338
|
<provider selected="true" editor-type-id="text-editor">
|
|
298
|
-
<state relative-caret-position="
|
|
299
|
-
<caret line="
|
|
300
|
-
<folding>
|
|
301
|
-
<element signature="e#0#41#0" expanded="true" />
|
|
302
|
-
</folding>
|
|
339
|
+
<state relative-caret-position="4110">
|
|
340
|
+
<caret line="274" selection-start-line="274" selection-end-line="274" />
|
|
303
341
|
</state>
|
|
304
342
|
</provider>
|
|
305
343
|
</entry>
|
|
306
344
|
</file>
|
|
307
345
|
<file pinned="false" current-in-tab="false">
|
|
308
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
346
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
|
|
309
347
|
<provider selected="true" editor-type-id="text-editor">
|
|
310
|
-
<state relative-caret-position="
|
|
311
|
-
<caret line="
|
|
348
|
+
<state relative-caret-position="172">
|
|
349
|
+
<caret line="105" column="54" selection-start-line="105" selection-start-column="54" selection-end-line="105" selection-end-column="63" />
|
|
312
350
|
<folding>
|
|
313
|
-
<element signature="
|
|
351
|
+
<element signature="n#style#0;n#div#0;n#!!top" expanded="true" />
|
|
352
|
+
<element signature="n#style#0;n#hr#0;n#!!top" expanded="true" />
|
|
353
|
+
<element signature="n#style#0;n#span#0;n#!!top" expanded="true" />
|
|
314
354
|
</folding>
|
|
315
355
|
</state>
|
|
316
356
|
</provider>
|
|
317
357
|
</entry>
|
|
318
358
|
</file>
|
|
319
|
-
<file pinned="false" current-in-tab="
|
|
320
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
359
|
+
<file pinned="false" current-in-tab="true">
|
|
360
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/common/consts.ts">
|
|
321
361
|
<provider selected="true" editor-type-id="text-editor">
|
|
322
|
-
<state relative-caret-position="
|
|
323
|
-
<caret line="
|
|
324
|
-
<folding>
|
|
325
|
-
<element signature="e#0#40#0" expanded="true" />
|
|
326
|
-
</folding>
|
|
362
|
+
<state relative-caret-position="414">
|
|
363
|
+
<caret line="47" column="131" selection-start-line="47" selection-start-column="131" selection-end-line="47" selection-end-column="131" />
|
|
327
364
|
</state>
|
|
328
365
|
</provider>
|
|
329
366
|
</entry>
|
|
@@ -341,73 +378,75 @@
|
|
|
341
378
|
</component>
|
|
342
379
|
<component name="FindInProjectRecents">
|
|
343
380
|
<findStrings>
|
|
344
|
-
<find>
|
|
345
|
-
<find>
|
|
346
|
-
<find>
|
|
347
|
-
<find>
|
|
348
|
-
<find>
|
|
349
|
-
<find>
|
|
350
|
-
<find>
|
|
351
|
-
<find>
|
|
352
|
-
<find>
|
|
353
|
-
<find>
|
|
354
|
-
<find>
|
|
355
|
-
<find>
|
|
356
|
-
<find
|
|
357
|
-
<find>counter</find>
|
|
358
|
-
<find>conc</find>
|
|
359
|
-
<find>parents</find>
|
|
360
|
-
<find>parentNumber</find>
|
|
361
|
-
<find>setcounter</find>
|
|
362
|
-
<find>isResetCounter</find>
|
|
363
|
-
<find>addParentTheoremEnvironment</find>
|
|
364
|
-
<find>concat</find>
|
|
365
|
-
<find>addParentsTheoremEnvironment</find>
|
|
366
|
-
<find>parentNumber_</find>
|
|
367
|
-
<find>parentNum</find>
|
|
381
|
+
<find>totsv</find>
|
|
382
|
+
<find>mstyle</find>
|
|
383
|
+
<find>style</find>
|
|
384
|
+
<find>quad</find>
|
|
385
|
+
<find>isMatrixOrSystemOfEquations</find>
|
|
386
|
+
<find>{:[a],[-b],[xx c]:}</find>
|
|
387
|
+
<find>{:</find>
|
|
388
|
+
<find>itShouldBeFlatten</find>
|
|
389
|
+
<find>TEXCLASS</find>
|
|
390
|
+
<find>isVerticalMath</find>
|
|
391
|
+
<find>setChildInheritedAttribute</find>
|
|
392
|
+
<find>times</find>
|
|
393
|
+
<find>=</find>
|
|
368
394
|
<find>console</find>
|
|
369
|
-
<find>
|
|
370
|
-
<find>
|
|
371
|
-
<find>
|
|
372
|
-
<find>
|
|
373
|
-
<find>
|
|
395
|
+
<find>getDataForVerticalMath</find>
|
|
396
|
+
<find>div</find>
|
|
397
|
+
<find>geqslant</find>
|
|
398
|
+
<find>Operation</find>
|
|
399
|
+
<find>getChilrenText</find>
|
|
400
|
+
<find><</find>
|
|
401
|
+
<find>downarrow</find>
|
|
402
|
+
<find>collChildrenCanBeFlat</find>
|
|
403
|
+
<find>mmlCollFlat</find>
|
|
404
|
+
<find>mmlRowFlat</find>
|
|
405
|
+
<find>flat</find>
|
|
406
|
+
<find>thml</find>
|
|
407
|
+
<find>multirow</find>
|
|
408
|
+
<find>group</find>
|
|
409
|
+
<find>setColumnLines</find>
|
|
410
|
+
<find>reMultiRow</find>
|
|
374
411
|
</findStrings>
|
|
375
412
|
<replaceStrings>
|
|
376
413
|
<replace>MJSimple</replace>
|
|
377
414
|
<replace>MJ</replace>
|
|
378
415
|
<replace>\</replace>
|
|
379
416
|
<replace>[\w\s]+</replace>
|
|
417
|
+
<replace>.table-of-contents</replace>
|
|
418
|
+
<replace>operation</replace>
|
|
380
419
|
</replaceStrings>
|
|
381
420
|
<dirStrings>
|
|
382
|
-
<dir>$PROJECT_DIR$/
|
|
383
|
-
<dir>$PROJECT_DIR$/
|
|
384
|
-
<dir>$PROJECT_DIR$/node_modules/
|
|
385
|
-
<dir>$PROJECT_DIR$/node_modules/
|
|
386
|
-
<dir>$PROJECT_DIR$/node_modules/
|
|
387
|
-
<dir>$PROJECT_DIR$/node_modules/
|
|
421
|
+
<dir>$PROJECT_DIR$/tests/_data</dir>
|
|
422
|
+
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/input</dir>
|
|
423
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it-emoji</dir>
|
|
424
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it-footnote</dir>
|
|
425
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it-ins</dir>
|
|
426
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it-mark</dir>
|
|
427
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it-multimd-table</dir>
|
|
428
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it-sub</dir>
|
|
429
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it-sup</dir>
|
|
430
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it-deflist</dir>
|
|
431
|
+
<dir>$PROJECT_DIR$/src/markdown/md-block-rule</dir>
|
|
432
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
|
|
433
|
+
<dir>$PROJECT_DIR$/src/contex-menu/menu</dir>
|
|
434
|
+
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/core/Tree</dir>
|
|
388
435
|
<dir>$PROJECT_DIR$/src/mathpix-markdown-model</dir>
|
|
389
|
-
<dir>$PROJECT_DIR$/src/mathjax/contex-menu</dir>
|
|
390
436
|
<dir>$PROJECT_DIR$/src/contex-menu</dir>
|
|
391
|
-
<dir>$PROJECT_DIR$/node_modules/postcss/lib</dir>
|
|
392
|
-
<dir>$PROJECT_DIR$/node_modules/postcss</dir>
|
|
393
|
-
<dir>$PROJECT_DIR$/src/mathjax</dir>
|
|
394
437
|
<dir>$PROJECT_DIR$/tests/_data/_wolfram</dir>
|
|
395
|
-
<dir>$PROJECT_DIR$/tests/_data/_ascii</dir>
|
|
396
438
|
<dir>$PROJECT_DIR$/src/mathjax/serialized-wolfram</dir>
|
|
397
|
-
<dir>$PROJECT_DIR$/
|
|
398
|
-
<dir>$PROJECT_DIR$</dir>
|
|
399
|
-
<dir>$PROJECT_DIR$/tests/_data</dir>
|
|
400
|
-
<dir>$PROJECT_DIR$/src/components</dir>
|
|
401
|
-
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib/rules_core</dir>
|
|
439
|
+
<dir>$PROJECT_DIR$/src/markdown</dir>
|
|
402
440
|
<dir>$PROJECT_DIR$/tests</dir>
|
|
441
|
+
<dir>$PROJECT_DIR$/node_modules/mathjax-full/js</dir>
|
|
442
|
+
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex</dir>
|
|
443
|
+
<dir>$PROJECT_DIR$/src/mathjax/helpers/array</dir>
|
|
444
|
+
<dir>$PROJECT_DIR$/src/mathjax/serialized-ascii</dir>
|
|
445
|
+
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree</dir>
|
|
446
|
+
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/core</dir>
|
|
403
447
|
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts</dir>
|
|
404
|
-
<dir>$PROJECT_DIR$/src/
|
|
405
|
-
<dir>$PROJECT_DIR$/
|
|
406
|
-
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib/rules_inline</dir>
|
|
407
|
-
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block</dir>
|
|
408
|
-
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
|
|
409
|
-
<dir>$PROJECT_DIR$/src/markdown</dir>
|
|
410
|
-
<dir>$PROJECT_DIR$/src/markdown/md-theorem</dir>
|
|
448
|
+
<dir>$PROJECT_DIR$/src/mathjax</dir>
|
|
449
|
+
<dir>$PROJECT_DIR$/tests/_data/_ascii</dir>
|
|
411
450
|
<dir>$PROJECT_DIR$/src</dir>
|
|
412
451
|
</dirStrings>
|
|
413
452
|
</component>
|
|
@@ -417,57 +456,57 @@
|
|
|
417
456
|
<component name="IdeDocumentHistory">
|
|
418
457
|
<option name="CHANGED_PATHS">
|
|
419
458
|
<list>
|
|
420
|
-
<option value="$PROJECT_DIR$/
|
|
421
|
-
<option value="$PROJECT_DIR$/tests/
|
|
422
|
-
<option value="$PROJECT_DIR$/src/
|
|
423
|
-
<option value="$PROJECT_DIR$/
|
|
424
|
-
<option value="$PROJECT_DIR$/
|
|
425
|
-
<option value="$PROJECT_DIR$/tests/_data/
|
|
426
|
-
<option value="$PROJECT_DIR$/
|
|
427
|
-
<option value="$PROJECT_DIR$/
|
|
428
|
-
<option value="$PROJECT_DIR$/src/
|
|
429
|
-
<option value="$PROJECT_DIR$/src/
|
|
430
|
-
<option value="$PROJECT_DIR$/tests/_data/_lists/_data.js" />
|
|
431
|
-
<option value="$PROJECT_DIR$/tests/_lists.js" />
|
|
432
|
-
<option value="$PROJECT_DIR$/test.html" />
|
|
433
|
-
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/image.ts" />
|
|
459
|
+
<option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts" />
|
|
460
|
+
<option value="$PROJECT_DIR$/tests/_data/_table-markdown/_data.js" />
|
|
461
|
+
<option value="$PROJECT_DIR$/src/contex-menu/menu/helper.ts" />
|
|
462
|
+
<option value="$PROJECT_DIR$/package.json" />
|
|
463
|
+
<option value="$PROJECT_DIR$/tests/_data/_wolfram/_data.js" />
|
|
464
|
+
<option value="$PROJECT_DIR$/tests/_data/_wolfram/_differentiation.js" />
|
|
465
|
+
<option value="$PROJECT_DIR$/src/mathjax/serialized-wolfram/post-process.ts" />
|
|
466
|
+
<option value="$PROJECT_DIR$/src/mathjax/wolfram.ts" />
|
|
467
|
+
<option value="$PROJECT_DIR$/src/mathjax/serialized-wolfram/handlers.ts" />
|
|
468
|
+
<option value="$PROJECT_DIR$/src/mathjax/serialized-wolfram/helperA.ts" />
|
|
434
469
|
<option value="$PROJECT_DIR$/src/markdown/rules.ts" />
|
|
435
|
-
<option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/index.ts" />
|
|
436
|
-
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/includegraphics.ts" />
|
|
437
|
-
<option value="$PROJECT_DIR$/tests/_data/_tables.js" />
|
|
438
|
-
<option value="$PROJECT_DIR$/tests/_data/tables/_data.js" />
|
|
439
|
-
<option value="$PROJECT_DIR$/tests/_data/_tables/_data.js" />
|
|
440
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" />
|
|
441
|
-
<option value="$PROJECT_DIR$/tests/_tables.js" />
|
|
442
|
-
<option value="$PROJECT_DIR$/tests/_data/_image/_data.js" />
|
|
443
|
-
<option value="$PROJECT_DIR$/tests/_image.js" />
|
|
444
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/multi-column-row.ts" />
|
|
445
|
-
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts" />
|
|
446
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" />
|
|
447
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-tabular.ts" />
|
|
448
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts" />
|
|
449
|
-
<option value="$PROJECT_DIR$/src/mathpix-markdown-model/index.ts" />
|
|
450
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/lists/index.ts" />
|
|
451
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-table.ts" />
|
|
452
|
-
<option value="$PROJECT_DIR$/src/markdown/mdPluginText.ts" />
|
|
453
|
-
<option value="$PROJECT_DIR$/src/markdown/mdPluginTableTabular.ts" />
|
|
454
|
-
<option value="$PROJECT_DIR$/src/styles/index.ts" />
|
|
455
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/helper.ts" />
|
|
456
|
-
<option value="$PROJECT_DIR$/tests/test.html" />
|
|
457
|
-
<option value="$PROJECT_DIR$/README.md" />
|
|
458
470
|
<option value="$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" />
|
|
459
|
-
<option value="$PROJECT_DIR$/src/
|
|
460
|
-
<option value="$PROJECT_DIR$/
|
|
471
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/BaseMethods.ts" />
|
|
472
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/AmsMethods.ts" />
|
|
473
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/AmsItems.ts" />
|
|
474
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/AmsMappings.ts" />
|
|
475
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/AmsConfiguration.ts" />
|
|
476
|
+
<option value="$PROJECT_DIR$/src/mathjax/my-BaseMappings.ts" />
|
|
477
|
+
<option value="$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex.js" />
|
|
478
|
+
<option value="$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/base/BaseMethods.js" />
|
|
479
|
+
<option value="$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/newcommand/NewcommandMethods.js" />
|
|
480
|
+
<option value="$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/newcommand/NewcommandUtil.js" />
|
|
481
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/FlatItems.ts" />
|
|
482
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/FlatConfiguration.ts" />
|
|
483
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/FlatMappings.ts" />
|
|
484
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/FlatMethods.ts" />
|
|
485
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/array/FlatConfiguration.ts" />
|
|
486
|
+
<option value="$PROJECT_DIR$/tsconfig.json" />
|
|
487
|
+
<option value="$PROJECT_DIR$/src/mathjax/mathJaxConfig.ts" />
|
|
488
|
+
<option value="$PROJECT_DIR$/tests/_tsv.js" />
|
|
489
|
+
<option value="$PROJECT_DIR$/tests/_data/_tsv_with_array/_data.js" />
|
|
490
|
+
<option value="$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_include_sub_math.js" />
|
|
491
|
+
<option value="$PROJECT_DIR$/tests/_tsv_with_array.js" />
|
|
492
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/array/ArrayConfiguration.ts" />
|
|
493
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/array/ArrayMethods.ts" />
|
|
494
|
+
<option value="$PROJECT_DIR$/src/mathjax/mathjax.ts" />
|
|
495
|
+
<option value="$PROJECT_DIR$/src/mathjax/helpers/array/ArrayMappings.ts" />
|
|
496
|
+
<option value="$PROJECT_DIR$/tests/_data/_ascii/_ascii_lcm.js" />
|
|
497
|
+
<option value="$PROJECT_DIR$/tests/_data/_ascii/ascii_vertical_math.js" />
|
|
498
|
+
<option value="$PROJECT_DIR$/tests/_data/_ascii/_asciiTimes.js" />
|
|
499
|
+
<option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/index.ts" />
|
|
500
|
+
<option value="$PROJECT_DIR$/src/mathjax/index.ts" />
|
|
501
|
+
<option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/helperA.ts" />
|
|
502
|
+
<option value="$PROJECT_DIR$/tests/_data/_ascii/_ascii_vertical_math.js" />
|
|
503
|
+
<option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts" />
|
|
504
|
+
<option value="$PROJECT_DIR$/tests/_ascii.js" />
|
|
505
|
+
<option value="$PROJECT_DIR$/README.md" />
|
|
461
506
|
<option value="$PROJECT_DIR$/src/markdown/common/consts.ts" />
|
|
462
|
-
<option value="$PROJECT_DIR$/
|
|
463
|
-
<option value="$PROJECT_DIR$/
|
|
464
|
-
<option value="$PROJECT_DIR$/
|
|
465
|
-
<option value="$PROJECT_DIR$/src/markdown/md-theorem/helper.ts" />
|
|
466
|
-
<option value="$PROJECT_DIR$/src/markdown/md-theorem/index.ts" />
|
|
467
|
-
<option value="$PROJECT_DIR$/src/markdown/index.ts" />
|
|
468
|
-
<option value="$PROJECT_DIR$/src/index.tsx" />
|
|
469
|
-
<option value="$PROJECT_DIR$/src/markdown/mathpix-markdown-plugins.tsx" />
|
|
470
|
-
<option value="$PROJECT_DIR$/package.json" />
|
|
507
|
+
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/multi-column-row.ts" />
|
|
508
|
+
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts" />
|
|
509
|
+
<option value="$PROJECT_DIR$/tests/_data/_tabular/_data.js" />
|
|
471
510
|
</list>
|
|
472
511
|
</option>
|
|
473
512
|
</component>
|
|
@@ -482,6 +521,7 @@
|
|
|
482
521
|
<component name="NodeModulesDirectoryManager">
|
|
483
522
|
<handled-path value="$PROJECT_DIR$/examples/react-app/use-components/node_modules" />
|
|
484
523
|
<handled-path value="$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/node_modules" />
|
|
524
|
+
<handled-path value="$PROJECT_DIR$/examples/react-app/use-toc/node_modules" />
|
|
485
525
|
<handled-path value="$PROJECT_DIR$/node_modules" />
|
|
486
526
|
</component>
|
|
487
527
|
<component name="NodePackageJsonFileManager">
|
|
@@ -492,14 +532,15 @@
|
|
|
492
532
|
<path value="$PROJECT_DIR$/examples/react-app/use-markdownToHTML-method/package.json" />
|
|
493
533
|
<path value="$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/package.json" />
|
|
494
534
|
<path value="$PROJECT_DIR$/examples/react-app/use-render-method/package.json" />
|
|
535
|
+
<path value="$PROJECT_DIR$/examples/react-app/use-toc/package.json" />
|
|
495
536
|
<path value="$PROJECT_DIR$/package.json" />
|
|
496
537
|
</packageJsonPaths>
|
|
497
538
|
</component>
|
|
498
|
-
<component name="ProjectFrameBounds">
|
|
499
|
-
<option name="x" value="
|
|
500
|
-
<option name="y" value="
|
|
501
|
-
<option name="width" value="
|
|
502
|
-
<option name="height" value="
|
|
539
|
+
<component name="ProjectFrameBounds" extendedState="6">
|
|
540
|
+
<option name="x" value="-8" />
|
|
541
|
+
<option name="y" value="23" />
|
|
542
|
+
<option name="width" value="1682" />
|
|
543
|
+
<option name="height" value="979" />
|
|
503
544
|
</component>
|
|
504
545
|
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
|
505
546
|
<component name="ProjectView">
|
|
@@ -517,18 +558,25 @@
|
|
|
517
558
|
<path>
|
|
518
559
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
519
560
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
520
|
-
<item name="
|
|
561
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
521
562
|
</path>
|
|
522
563
|
<path>
|
|
523
564
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
524
565
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
525
|
-
<item name="
|
|
566
|
+
<item name="tests" type="462c0819:PsiDirectoryNode" />
|
|
526
567
|
</path>
|
|
527
568
|
<path>
|
|
528
569
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
529
570
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
530
|
-
<item name="
|
|
531
|
-
<item name="
|
|
571
|
+
<item name="tests" type="462c0819:PsiDirectoryNode" />
|
|
572
|
+
<item name="_data" type="462c0819:PsiDirectoryNode" />
|
|
573
|
+
</path>
|
|
574
|
+
<path>
|
|
575
|
+
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
576
|
+
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
577
|
+
<item name="tests" type="462c0819:PsiDirectoryNode" />
|
|
578
|
+
<item name="_data" type="462c0819:PsiDirectoryNode" />
|
|
579
|
+
<item name="_tabular" type="462c0819:PsiDirectoryNode" />
|
|
532
580
|
</path>
|
|
533
581
|
</expand>
|
|
534
582
|
<select />
|
|
@@ -559,6 +607,8 @@
|
|
|
559
607
|
<recent name="$PROJECT_DIR$/src/contex-menu/menu" />
|
|
560
608
|
</key>
|
|
561
609
|
<key name="CopyFile.RECENT_KEYS">
|
|
610
|
+
<recent name="$PROJECT_DIR$/src/mathjax/helpers" />
|
|
611
|
+
<recent name="$PROJECT_DIR$/examples/react-app/use-toc" />
|
|
562
612
|
<recent name="$PROJECT_DIR$/src/mathjax/serialized-wolfram" />
|
|
563
613
|
</key>
|
|
564
614
|
</component>
|
|
@@ -681,21 +731,46 @@
|
|
|
681
731
|
<workItem from="1671644853512" duration="1092000" />
|
|
682
732
|
<workItem from="1671692808227" duration="2887000" />
|
|
683
733
|
<workItem from="1672155815870" duration="1807000" />
|
|
734
|
+
<workItem from="1672162453105" duration="1072000" />
|
|
735
|
+
<workItem from="1672287146347" duration="37145000" />
|
|
736
|
+
<workItem from="1672640885329" duration="5184000" />
|
|
737
|
+
<workItem from="1672652944922" duration="57153000" />
|
|
738
|
+
<workItem from="1673208400572" duration="5871000" />
|
|
739
|
+
<workItem from="1673251209385" duration="782000" />
|
|
740
|
+
<workItem from="1673255391232" duration="11058000" />
|
|
741
|
+
<workItem from="1673336473309" duration="7842000" />
|
|
742
|
+
<workItem from="1673357024426" duration="32091000" />
|
|
743
|
+
<workItem from="1673513420556" duration="2086000" />
|
|
744
|
+
<workItem from="1673531383863" duration="127000" />
|
|
745
|
+
<workItem from="1673533211661" duration="10336000" />
|
|
746
|
+
<workItem from="1673602104199" duration="6856000" />
|
|
747
|
+
<workItem from="1673850185563" duration="31047000" />
|
|
748
|
+
<workItem from="1673933686072" duration="23940000" />
|
|
749
|
+
<workItem from="1673979163425" duration="56000" />
|
|
750
|
+
<workItem from="1674802623125" duration="11148000" />
|
|
751
|
+
<workItem from="1675060742275" duration="77146000" />
|
|
752
|
+
<workItem from="1675269929608" duration="29436000" />
|
|
753
|
+
<workItem from="1675407387750" duration="819000" />
|
|
754
|
+
<workItem from="1675412174244" duration="453000" />
|
|
755
|
+
<workItem from="1675664038485" duration="104804000" />
|
|
756
|
+
<workItem from="1676272791842" duration="12215000" />
|
|
757
|
+
<workItem from="1676443545624" duration="1633000" />
|
|
758
|
+
<workItem from="1676468630666" duration="4895000" />
|
|
684
759
|
</task>
|
|
685
760
|
<servers />
|
|
686
761
|
</component>
|
|
687
762
|
<component name="TimeTrackingManager">
|
|
688
|
-
<option name="totallyTimeSpent" value="
|
|
763
|
+
<option name="totallyTimeSpent" value="1412687000" />
|
|
689
764
|
</component>
|
|
690
765
|
<component name="ToolWindowManager">
|
|
691
|
-
<frame x="
|
|
766
|
+
<frame x="-8" y="23" width="1682" height="979" extended-state="6" />
|
|
692
767
|
<layout>
|
|
693
|
-
<window_info content_ui="combo" id="Project" order="0" sideWeight="0.49395162" visible="true" weight="0.
|
|
768
|
+
<window_info content_ui="combo" id="Project" order="0" sideWeight="0.49395162" visible="true" weight="0.18362433" />
|
|
694
769
|
<window_info id="Structure" order="1" sideWeight="0.5060484" side_tool="true" weight="0.21637055" />
|
|
695
770
|
<window_info id="npm" order="2" side_tool="true" />
|
|
696
771
|
<window_info id="DB Browser" order="3" />
|
|
697
772
|
<window_info id="Project Explorer" order="4" />
|
|
698
|
-
<window_info id="Job Explorer" order="5" />
|
|
773
|
+
<window_info id="Job Explorer" order="5" weight="0.32978722" />
|
|
699
774
|
<window_info id="Favorites" order="6" side_tool="true" />
|
|
700
775
|
<window_info anchor="bottom" id="Message" order="0" />
|
|
701
776
|
<window_info anchor="bottom" id="Find" order="1" />
|
|
@@ -709,7 +784,7 @@
|
|
|
709
784
|
<window_info anchor="bottom" id="Version Control" order="9" show_stripe_button="false" />
|
|
710
785
|
<window_info anchor="bottom" id="DB Execution Console" order="10" />
|
|
711
786
|
<window_info anchor="bottom" id="TypeScript" order="11" />
|
|
712
|
-
<window_info active="true" anchor="bottom" id="Terminal" order="12" sideWeight="0.4993515" visible="true" weight="0.
|
|
787
|
+
<window_info active="true" anchor="bottom" id="Terminal" order="12" sideWeight="0.4993515" visible="true" weight="0.4430665" />
|
|
713
788
|
<window_info anchor="bottom" id="Event Log" order="13" sideWeight="0.5006485" side_tool="true" weight="0.24063565" />
|
|
714
789
|
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
|
715
790
|
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
|
@@ -751,14 +826,9 @@
|
|
|
751
826
|
<component name="XDebuggerManager">
|
|
752
827
|
<breakpoint-manager>
|
|
753
828
|
<breakpoints>
|
|
754
|
-
<line-breakpoint enabled="true" type="javascript">
|
|
755
|
-
<url>file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts</url>
|
|
756
|
-
<line>497</line>
|
|
757
|
-
<option name="timeStamp" value="15" />
|
|
758
|
-
</line-breakpoint>
|
|
759
829
|
<line-breakpoint enabled="true" type="javascript">
|
|
760
830
|
<url>file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts</url>
|
|
761
|
-
<line>
|
|
831
|
+
<line>359</line>
|
|
762
832
|
<option name="timeStamp" value="16" />
|
|
763
833
|
</line-breakpoint>
|
|
764
834
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -771,11 +841,6 @@
|
|
|
771
841
|
<line>95</line>
|
|
772
842
|
<option name="timeStamp" value="18" />
|
|
773
843
|
</line-breakpoint>
|
|
774
|
-
<line-breakpoint enabled="true" type="javascript">
|
|
775
|
-
<url>file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts</url>
|
|
776
|
-
<line>248</line>
|
|
777
|
-
<option name="timeStamp" value="19" />
|
|
778
|
-
</line-breakpoint>
|
|
779
844
|
<line-breakpoint enabled="true" type="javascript">
|
|
780
845
|
<url>file://$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts</url>
|
|
781
846
|
<option name="timeStamp" value="20" />
|
|
@@ -795,370 +860,438 @@
|
|
|
795
860
|
<line>22</line>
|
|
796
861
|
<option name="timeStamp" value="26" />
|
|
797
862
|
</line-breakpoint>
|
|
863
|
+
<line-breakpoint enabled="true" type="javascript">
|
|
864
|
+
<url>file://$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/src/form.jsx</url>
|
|
865
|
+
<line>73</line>
|
|
866
|
+
<option name="timeStamp" value="27" />
|
|
867
|
+
</line-breakpoint>
|
|
868
|
+
<line-breakpoint enabled="true" type="javascript">
|
|
869
|
+
<url>file://$PROJECT_DIR$/examples/react-app/use-toc/src/form.jsx</url>
|
|
870
|
+
<line>75</line>
|
|
871
|
+
<option name="timeStamp" value="28" />
|
|
872
|
+
</line-breakpoint>
|
|
873
|
+
<line-breakpoint enabled="true" type="javascript">
|
|
874
|
+
<url>file://$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts</url>
|
|
875
|
+
<line>438</line>
|
|
876
|
+
<option name="timeStamp" value="29" />
|
|
877
|
+
</line-breakpoint>
|
|
878
|
+
<line-breakpoint enabled="true" type="javascript">
|
|
879
|
+
<url>file://$PROJECT_DIR$/src/mathjax/serialized-wolfram/handlers.ts</url>
|
|
880
|
+
<line>12</line>
|
|
881
|
+
<option name="timeStamp" value="30" />
|
|
882
|
+
</line-breakpoint>
|
|
883
|
+
<line-breakpoint enabled="true" type="javascript">
|
|
884
|
+
<url>file://$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts</url>
|
|
885
|
+
<line>705</line>
|
|
886
|
+
<option name="timeStamp" value="31" />
|
|
887
|
+
</line-breakpoint>
|
|
798
888
|
</breakpoints>
|
|
799
889
|
</breakpoint-manager>
|
|
800
890
|
</component>
|
|
801
891
|
<component name="editorHistoryManager">
|
|
802
|
-
<entry file="file://$PROJECT_DIR$/
|
|
892
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/base/BaseMethods.js">
|
|
803
893
|
<provider selected="true" editor-type-id="text-editor">
|
|
804
|
-
<state relative-caret-position="
|
|
805
|
-
<caret line="
|
|
894
|
+
<state relative-caret-position="452">
|
|
895
|
+
<caret line="819" column="53" selection-start-line="819" selection-start-column="53" selection-end-line="819" selection-end-column="53" />
|
|
806
896
|
</state>
|
|
807
897
|
</provider>
|
|
808
898
|
</entry>
|
|
809
|
-
<entry file="file://$PROJECT_DIR$/node_modules/
|
|
899
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/newcommand/NewcommandMethods.js">
|
|
810
900
|
<provider selected="true" editor-type-id="text-editor">
|
|
811
|
-
<state relative-caret-position="
|
|
812
|
-
<caret line="
|
|
901
|
+
<state relative-caret-position="450">
|
|
902
|
+
<caret line="142" column="17" selection-start-line="142" selection-start-column="17" selection-end-line="142" selection-end-column="17" />
|
|
813
903
|
</state>
|
|
814
904
|
</provider>
|
|
815
905
|
</entry>
|
|
816
|
-
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/
|
|
906
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/newcommand/NewcommandUtil.js">
|
|
817
907
|
<provider selected="true" editor-type-id="text-editor">
|
|
818
|
-
<state relative-caret-position="
|
|
819
|
-
<caret line="
|
|
908
|
+
<state relative-caret-position="180">
|
|
909
|
+
<caret line="131" column="5" selection-start-line="131" selection-start-column="5" selection-end-line="131" selection-end-column="5" />
|
|
820
910
|
</state>
|
|
821
911
|
</provider>
|
|
822
912
|
</entry>
|
|
823
|
-
<entry file="file://$PROJECT_DIR$/
|
|
913
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/base/BaseConfiguration.ts">
|
|
824
914
|
<provider selected="true" editor-type-id="text-editor">
|
|
825
|
-
<state relative-caret-position="
|
|
826
|
-
<caret line="
|
|
915
|
+
<state relative-caret-position="176">
|
|
916
|
+
<caret line="117" column="52" selection-start-line="117" selection-start-column="52" selection-end-line="117" selection-end-column="52" />
|
|
827
917
|
</state>
|
|
828
918
|
</provider>
|
|
829
919
|
</entry>
|
|
830
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
831
|
-
|
|
832
|
-
</entry>
|
|
833
|
-
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block/state_block.js">
|
|
834
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
835
|
-
</entry>
|
|
836
|
-
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block/reference.js">
|
|
920
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/helpers/flat/FlatItems.ts" />
|
|
921
|
+
<entry file="file://$PROJECT_DIR$/tsconfig.json">
|
|
837
922
|
<provider selected="true" editor-type-id="text-editor">
|
|
838
|
-
<state relative-caret-position="
|
|
923
|
+
<state relative-caret-position="195">
|
|
924
|
+
<caret line="13" selection-start-line="13" selection-end-line="13" />
|
|
925
|
+
</state>
|
|
839
926
|
</provider>
|
|
840
927
|
</entry>
|
|
841
|
-
<entry file="file://$PROJECT_DIR$/node_modules/
|
|
928
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/TexParser.ts">
|
|
842
929
|
<provider selected="true" editor-type-id="text-editor">
|
|
843
|
-
<state relative-caret-position="
|
|
930
|
+
<state relative-caret-position="43">
|
|
931
|
+
<caret line="471" selection-start-line="471" selection-end-line="471" />
|
|
932
|
+
</state>
|
|
844
933
|
</provider>
|
|
845
934
|
</entry>
|
|
846
|
-
<entry file="file://$PROJECT_DIR$/node_modules/
|
|
847
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
848
|
-
</entry>
|
|
849
|
-
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block/fence.js">
|
|
850
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
851
|
-
</entry>
|
|
852
|
-
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block/heading.js">
|
|
935
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/core/MmlTree/SerializedMmlVisitor.d.ts">
|
|
853
936
|
<provider selected="true" editor-type-id="text-editor">
|
|
854
|
-
<state relative-caret-position="
|
|
937
|
+
<state relative-caret-position="135">
|
|
938
|
+
<caret line="10" column="6" selection-start-line="10" selection-start-column="6" selection-end-line="10" selection-end-column="6" />
|
|
939
|
+
</state>
|
|
855
940
|
</provider>
|
|
856
941
|
</entry>
|
|
857
|
-
<entry file="file://$PROJECT_DIR$/node_modules/
|
|
942
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/core/MmlTree/Attributes.d.ts">
|
|
858
943
|
<provider selected="true" editor-type-id="text-editor">
|
|
859
|
-
<state relative-caret-position="
|
|
860
|
-
<caret line="
|
|
944
|
+
<state relative-caret-position="345">
|
|
945
|
+
<caret line="23" column="19" selection-start-line="23" selection-start-column="4" selection-end-line="23" selection-end-column="19" />
|
|
861
946
|
</state>
|
|
862
947
|
</provider>
|
|
863
948
|
</entry>
|
|
864
|
-
<entry file="file://$PROJECT_DIR$/
|
|
865
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
866
|
-
</entry>
|
|
867
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginLists.ts">
|
|
949
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/base/BaseItems.ts">
|
|
868
950
|
<provider selected="true" editor-type-id="text-editor">
|
|
869
|
-
<state relative-caret-position="
|
|
870
|
-
<caret line="
|
|
951
|
+
<state relative-caret-position="36">
|
|
952
|
+
<caret line="781" column="30" selection-start-line="781" selection-start-column="30" selection-end-line="781" selection-end-column="30" />
|
|
871
953
|
</state>
|
|
872
954
|
</provider>
|
|
873
955
|
</entry>
|
|
874
|
-
<entry file="file://$PROJECT_DIR$/
|
|
956
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/base/BaseMethods.ts">
|
|
875
957
|
<provider selected="true" editor-type-id="text-editor">
|
|
876
|
-
<state relative-caret-position="
|
|
877
|
-
<caret line="
|
|
958
|
+
<state relative-caret-position="57">
|
|
959
|
+
<caret line="1235" column="20" selection-start-line="1235" selection-start-column="20" selection-end-line="1235" selection-end-column="20" />
|
|
878
960
|
</state>
|
|
879
961
|
</provider>
|
|
880
962
|
</entry>
|
|
881
|
-
<entry file="file://$PROJECT_DIR$/node_modules/
|
|
882
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
963
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree/SerializedMmlVisitor.ts">
|
|
964
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
965
|
+
<state relative-caret-position="202">
|
|
966
|
+
<caret line="38" column="3" selection-start-line="38" selection-start-column="3" selection-end-line="38" selection-end-column="3" />
|
|
967
|
+
<folding>
|
|
968
|
+
<element signature="e#871#914#0" expanded="true" />
|
|
969
|
+
</folding>
|
|
970
|
+
</state>
|
|
971
|
+
</provider>
|
|
883
972
|
</entry>
|
|
884
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
973
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/mathml-word.ts">
|
|
885
974
|
<provider selected="true" editor-type-id="text-editor">
|
|
886
|
-
<state relative-caret-position="
|
|
887
|
-
<caret line="
|
|
975
|
+
<state relative-caret-position="105">
|
|
976
|
+
<caret line="7" column="2" selection-start-line="7" selection-start-column="2" selection-end-line="7" selection-end-column="2" />
|
|
888
977
|
</state>
|
|
889
978
|
</provider>
|
|
890
979
|
</entry>
|
|
891
|
-
<entry file="file://$PROJECT_DIR$/
|
|
980
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/FilterUtil.ts">
|
|
892
981
|
<provider selected="true" editor-type-id="text-editor">
|
|
893
|
-
<state relative-caret-position="
|
|
894
|
-
<caret line="
|
|
895
|
-
<folding>
|
|
896
|
-
<element signature="e#0#81#0" expanded="true" />
|
|
897
|
-
</folding>
|
|
982
|
+
<state relative-caret-position="436">
|
|
983
|
+
<caret line="76" column="10" selection-start-line="76" selection-start-column="10" selection-end-line="76" selection-end-column="41" />
|
|
898
984
|
</state>
|
|
899
985
|
</provider>
|
|
900
986
|
</entry>
|
|
901
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
987
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/mathJaxConfig.ts">
|
|
902
988
|
<provider selected="true" editor-type-id="text-editor">
|
|
903
|
-
<state relative-caret-position="
|
|
904
|
-
<caret line="
|
|
989
|
+
<state relative-caret-position="45">
|
|
990
|
+
<caret line="3" selection-start-line="3" selection-end-line="3" />
|
|
905
991
|
</state>
|
|
906
992
|
</provider>
|
|
907
993
|
</entry>
|
|
908
|
-
<entry file="file://$PROJECT_DIR$/
|
|
994
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex.d.ts">
|
|
909
995
|
<provider selected="true" editor-type-id="text-editor">
|
|
910
|
-
<state relative-caret-position="
|
|
911
|
-
<caret line="
|
|
996
|
+
<state relative-caret-position="165">
|
|
997
|
+
<caret line="21" column="4" selection-start-line="21" selection-start-column="4" selection-end-line="21" selection-end-column="4" />
|
|
912
998
|
</state>
|
|
913
999
|
</provider>
|
|
914
1000
|
</entry>
|
|
915
|
-
<entry file="file://$PROJECT_DIR$/
|
|
916
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
1001
|
+
<entry file="file://$PROJECT_DIR$/tests/_tsv.js">
|
|
1002
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1003
|
+
<state relative-caret-position="137">
|
|
1004
|
+
<caret line="23" column="8" selection-start-line="23" selection-start-column="8" selection-end-line="23" selection-end-column="8" />
|
|
1005
|
+
</state>
|
|
1006
|
+
</provider>
|
|
917
1007
|
</entry>
|
|
918
|
-
<entry file="file://$PROJECT_DIR$/tests/
|
|
919
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
1008
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_tsv_with_array/_data.js">
|
|
1009
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1010
|
+
<state relative-caret-position="-695">
|
|
1011
|
+
<caret line="301" column="19" selection-start-line="301" selection-start-column="19" selection-end-line="301" selection-end-column="19" />
|
|
1012
|
+
</state>
|
|
1013
|
+
</provider>
|
|
920
1014
|
</entry>
|
|
921
|
-
<entry file="file://$PROJECT_DIR$/
|
|
922
|
-
<entry file="file://$PROJECT_DIR$/tests/_nonumbers.js">
|
|
1015
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MathDocument.ts">
|
|
923
1016
|
<provider selected="true" editor-type-id="text-editor">
|
|
924
|
-
<state relative-caret-position="
|
|
925
|
-
<caret line="
|
|
1017
|
+
<state relative-caret-position="472">
|
|
1018
|
+
<caret line="636" column="7" selection-start-line="636" selection-start-column="7" selection-end-line="636" selection-end-column="7" />
|
|
926
1019
|
</state>
|
|
927
1020
|
</provider>
|
|
928
1021
|
</entry>
|
|
929
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1022
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_include_sub_math.js">
|
|
930
1023
|
<provider selected="true" editor-type-id="text-editor">
|
|
931
|
-
<state relative-caret-position="
|
|
932
|
-
<caret line="
|
|
1024
|
+
<state relative-caret-position="345">
|
|
1025
|
+
<caret line="23" column="16" selection-start-line="23" selection-start-column="16" selection-end-line="23" selection-end-column="16" />
|
|
933
1026
|
</state>
|
|
934
1027
|
</provider>
|
|
935
1028
|
</entry>
|
|
936
|
-
<entry file="file://$PROJECT_DIR$/
|
|
937
|
-
<provider selected="true" editor-type-id="
|
|
938
|
-
<state
|
|
939
|
-
<
|
|
940
|
-
<second_editor />
|
|
1029
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/mathjax.ts">
|
|
1030
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1031
|
+
<state relative-caret-position="288">
|
|
1032
|
+
<caret line="35" column="1" selection-start-line="35" selection-start-column="1" selection-end-line="35" selection-end-column="1" />
|
|
941
1033
|
</state>
|
|
942
1034
|
</provider>
|
|
943
1035
|
</entry>
|
|
944
|
-
<entry file="file://$PROJECT_DIR$/
|
|
945
|
-
<provider selected="true" editor-type-id="
|
|
946
|
-
<state
|
|
947
|
-
<
|
|
948
|
-
<caret line="252" selection-start-line="252" selection-end-line="252" />
|
|
949
|
-
</first_editor>
|
|
950
|
-
<second_editor />
|
|
1036
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_ascii/_asciiTimes.js">
|
|
1037
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1038
|
+
<state relative-caret-position="435">
|
|
1039
|
+
<caret line="29" selection-start-line="29" selection-end-line="29" />
|
|
951
1040
|
</state>
|
|
952
1041
|
</provider>
|
|
953
1042
|
</entry>
|
|
954
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1043
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts">
|
|
955
1044
|
<provider selected="true" editor-type-id="text-editor">
|
|
956
|
-
<state relative-caret-position="
|
|
957
|
-
<caret line="
|
|
1045
|
+
<state relative-caret-position="5415">
|
|
1046
|
+
<caret line="362" column="7" selection-start-line="362" selection-start-column="7" selection-end-line="362" selection-end-column="7" />
|
|
958
1047
|
<folding>
|
|
959
|
-
<element signature="e#
|
|
960
|
-
<element signature="n#style#0;n#span#0;n#!!top" expanded="true" />
|
|
961
|
-
<element signature="e#6#12#0" expanded="true" />
|
|
962
|
-
<element signature="e#12#18#0" expanded="true" />
|
|
963
|
-
<element signature="n#style#0;n#span#0;n#!!top" expanded="true" />
|
|
964
|
-
<element signature="e#6#12#0" expanded="true" />
|
|
965
|
-
<element signature="e#12#18#0" expanded="true" />
|
|
966
|
-
<element signature="n#style#0;n#span#0;n#!!top" expanded="true" />
|
|
967
|
-
<element signature="e#6#12#1" expanded="true" />
|
|
968
|
-
<element signature="n#style#0;n#span#0;n#!!top" expanded="true" />
|
|
969
|
-
<element signature="n#style#0;n#span#0;n#!!top" expanded="true" />
|
|
1048
|
+
<element signature="e#0#73#0" expanded="true" />
|
|
970
1049
|
</folding>
|
|
971
1050
|
</state>
|
|
972
1051
|
</provider>
|
|
973
1052
|
</entry>
|
|
974
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1053
|
+
<entry file="file://$PROJECT_DIR$/tests/_tsv_with_array.js">
|
|
975
1054
|
<provider selected="true" editor-type-id="text-editor">
|
|
976
|
-
<state>
|
|
977
|
-
<caret column="
|
|
1055
|
+
<state relative-caret-position="540">
|
|
1056
|
+
<caret line="36" column="8" selection-start-line="36" selection-start-column="8" selection-end-line="36" selection-end-column="8" />
|
|
978
1057
|
</state>
|
|
979
1058
|
</provider>
|
|
980
1059
|
</entry>
|
|
981
|
-
<entry file="file://$PROJECT_DIR$/
|
|
982
|
-
<provider selected="true" editor-type-id="
|
|
983
|
-
<state
|
|
984
|
-
<
|
|
985
|
-
<caret line="61" selection-start-line="61" selection-end-line="61" />
|
|
986
|
-
</first_editor>
|
|
987
|
-
<second_editor />
|
|
1060
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/helpers/array/ArrayConfiguration.ts">
|
|
1061
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1062
|
+
<state relative-caret-position="240">
|
|
1063
|
+
<caret line="17" selection-start-line="17" selection-end-line="17" />
|
|
988
1064
|
</state>
|
|
989
1065
|
</provider>
|
|
990
1066
|
</entry>
|
|
991
|
-
<entry file="file://$PROJECT_DIR$/
|
|
992
|
-
<provider selected="true" editor-type-id="
|
|
1067
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/helpers/array/ArrayMethods.ts">
|
|
1068
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1069
|
+
<state relative-caret-position="75">
|
|
1070
|
+
<caret line="10" selection-start-line="10" selection-end-line="10" />
|
|
1071
|
+
</state>
|
|
1072
|
+
</provider>
|
|
993
1073
|
</entry>
|
|
994
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1074
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/helpers/array/ArrayMappings.ts">
|
|
995
1075
|
<provider selected="true" editor-type-id="text-editor">
|
|
996
|
-
<state>
|
|
997
|
-
<caret selection-
|
|
1076
|
+
<state relative-caret-position="120">
|
|
1077
|
+
<caret line="10" selection-start-line="10" selection-end-line="10" />
|
|
998
1078
|
</state>
|
|
999
1079
|
</provider>
|
|
1000
1080
|
</entry>
|
|
1001
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1081
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_ascii/_ascii_vertical_math.js">
|
|
1002
1082
|
<provider selected="true" editor-type-id="text-editor">
|
|
1003
|
-
<state relative-caret-position="
|
|
1004
|
-
<caret line="
|
|
1083
|
+
<state relative-caret-position="176">
|
|
1084
|
+
<caret line="184" column="64" selection-start-line="184" selection-start-column="64" selection-end-line="184" selection-end-column="64" />
|
|
1005
1085
|
</state>
|
|
1006
1086
|
</provider>
|
|
1007
1087
|
</entry>
|
|
1008
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1088
|
+
<entry file="file://$PROJECT_DIR$/package.json">
|
|
1089
|
+
<provider selected="true" editor-type-id="text-editor" />
|
|
1090
|
+
</entry>
|
|
1091
|
+
<entry file="file://$PROJECT_DIR$/tests/_ascii.js">
|
|
1009
1092
|
<provider selected="true" editor-type-id="text-editor">
|
|
1010
|
-
<state relative-caret-position="
|
|
1011
|
-
<caret line="
|
|
1093
|
+
<state relative-caret-position="706">
|
|
1094
|
+
<caret line="150" column="2" selection-start-line="150" selection-start-column="2" selection-end-line="150" selection-end-column="2" />
|
|
1012
1095
|
</state>
|
|
1013
1096
|
</provider>
|
|
1014
1097
|
</entry>
|
|
1015
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1098
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree/OperatorDictionary.ts">
|
|
1016
1099
|
<provider selected="true" editor-type-id="text-editor">
|
|
1017
|
-
<state relative-caret-position="
|
|
1018
|
-
<caret line="
|
|
1100
|
+
<state relative-caret-position="360">
|
|
1101
|
+
<caret line="24" column="31" selection-start-line="24" selection-start-column="31" selection-end-line="24" selection-end-column="31" />
|
|
1102
|
+
</state>
|
|
1103
|
+
</provider>
|
|
1104
|
+
</entry>
|
|
1105
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/index.ts">
|
|
1106
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1107
|
+
<state relative-caret-position="840">
|
|
1108
|
+
<caret line="63" selection-start-line="63" selection-end-line="63" />
|
|
1019
1109
|
<folding>
|
|
1020
|
-
<element signature="
|
|
1021
|
-
<element signature="n#!!block;n#inlineMathML#0" />
|
|
1110
|
+
<element signature="e#0#50#0" expanded="true" />
|
|
1022
1111
|
</folding>
|
|
1023
1112
|
</state>
|
|
1024
1113
|
</provider>
|
|
1025
1114
|
</entry>
|
|
1026
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1115
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/js/core/MmlTree/MmlVisitor.d.ts">
|
|
1027
1116
|
<provider selected="true" editor-type-id="text-editor">
|
|
1028
|
-
<state relative-caret-position="
|
|
1029
|
-
<caret line="
|
|
1117
|
+
<state relative-caret-position="90">
|
|
1118
|
+
<caret line="8" selection-start-line="8" selection-end-line="8" />
|
|
1030
1119
|
</state>
|
|
1031
1120
|
</provider>
|
|
1032
1121
|
</entry>
|
|
1033
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1122
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex.ts">
|
|
1034
1123
|
<provider selected="true" editor-type-id="text-editor">
|
|
1035
|
-
<state relative-caret-position="
|
|
1036
|
-
<caret line="
|
|
1124
|
+
<state relative-caret-position="1965">
|
|
1125
|
+
<caret line="146" column="43" selection-start-line="146" selection-start-column="43" selection-end-line="146" selection-end-column="43" />
|
|
1126
|
+
<folding>
|
|
1127
|
+
<element signature="e#794#847#0" expanded="true" />
|
|
1128
|
+
</folding>
|
|
1037
1129
|
</state>
|
|
1038
1130
|
</provider>
|
|
1039
1131
|
</entry>
|
|
1040
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1132
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
1133
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
1134
|
+
<state split_layout="FIRST">
|
|
1135
|
+
<first_editor relative-caret-position="148">
|
|
1136
|
+
<caret line="211" column="19" selection-start-line="211" selection-start-column="15" selection-end-line="211" selection-end-column="19" />
|
|
1137
|
+
</first_editor>
|
|
1138
|
+
<second_editor />
|
|
1139
|
+
</state>
|
|
1140
|
+
</provider>
|
|
1141
|
+
</entry>
|
|
1142
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/index.ts">
|
|
1041
1143
|
<provider selected="true" editor-type-id="text-editor">
|
|
1042
|
-
<state relative-caret-position="
|
|
1043
|
-
<caret line="
|
|
1144
|
+
<state relative-caret-position="315">
|
|
1145
|
+
<caret line="24" column="26" selection-start-line="24" selection-start-column="26" selection-end-line="24" selection-end-column="26" />
|
|
1044
1146
|
<folding>
|
|
1045
|
-
<element signature="e#
|
|
1147
|
+
<element signature="e#0#70#0" expanded="true" />
|
|
1046
1148
|
</folding>
|
|
1047
1149
|
</state>
|
|
1048
1150
|
</provider>
|
|
1049
1151
|
</entry>
|
|
1050
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1152
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_ascii/_ascii_lcm.js">
|
|
1051
1153
|
<provider selected="true" editor-type-id="text-editor">
|
|
1052
|
-
<state relative-caret-position="
|
|
1053
|
-
<caret line="
|
|
1154
|
+
<state relative-caret-position="2160">
|
|
1155
|
+
<caret line="144" column="2" selection-start-line="144" selection-start-column="2" selection-end-line="144" selection-end-column="2" />
|
|
1054
1156
|
</state>
|
|
1055
1157
|
</provider>
|
|
1056
1158
|
</entry>
|
|
1057
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1159
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree/MmlNodes/mrow.ts">
|
|
1058
1160
|
<provider selected="true" editor-type-id="text-editor">
|
|
1059
|
-
<state relative-caret-position="
|
|
1060
|
-
<caret line="
|
|
1161
|
+
<state relative-caret-position="360">
|
|
1162
|
+
<caret line="24" column="42" selection-start-line="24" selection-start-column="34" selection-end-line="24" selection-end-column="42" />
|
|
1061
1163
|
</state>
|
|
1062
1164
|
</provider>
|
|
1063
1165
|
</entry>
|
|
1064
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1166
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree/Attributes.ts">
|
|
1065
1167
|
<provider selected="true" editor-type-id="text-editor">
|
|
1066
|
-
<state relative-caret-position="
|
|
1067
|
-
<caret line="
|
|
1068
|
-
<folding>
|
|
1069
|
-
<element signature="e#0#64#0" expanded="true" />
|
|
1070
|
-
</folding>
|
|
1168
|
+
<state relative-caret-position="2220">
|
|
1169
|
+
<caret line="148" column="5" selection-start-line="148" selection-start-column="5" selection-end-line="148" selection-end-column="5" />
|
|
1071
1170
|
</state>
|
|
1072
1171
|
</provider>
|
|
1073
1172
|
</entry>
|
|
1074
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1173
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_ascii/_asciiData.js">
|
|
1075
1174
|
<provider selected="true" editor-type-id="text-editor">
|
|
1076
|
-
<state relative-caret-position="
|
|
1077
|
-
<caret line="
|
|
1078
|
-
<folding>
|
|
1079
|
-
<element signature="e#0#41#0" expanded="true" />
|
|
1080
|
-
</folding>
|
|
1175
|
+
<state relative-caret-position="3645">
|
|
1176
|
+
<caret line="243" column="38" selection-start-line="243" selection-start-column="38" selection-end-line="243" selection-end-column="38" />
|
|
1081
1177
|
</state>
|
|
1082
1178
|
</provider>
|
|
1083
1179
|
</entry>
|
|
1084
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1180
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/helperA.ts">
|
|
1085
1181
|
<provider selected="true" editor-type-id="text-editor">
|
|
1086
|
-
<state relative-caret-position="
|
|
1087
|
-
<caret line="
|
|
1088
|
-
<folding>
|
|
1089
|
-
<element signature="e#0#47#0" expanded="true" />
|
|
1090
|
-
</folding>
|
|
1182
|
+
<state relative-caret-position="1500">
|
|
1183
|
+
<caret line="100" column="39" selection-start-line="100" selection-start-column="39" selection-end-line="100" selection-end-column="39" />
|
|
1091
1184
|
</state>
|
|
1092
1185
|
</provider>
|
|
1093
1186
|
</entry>
|
|
1094
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1187
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree/MmlNode.ts">
|
|
1095
1188
|
<provider selected="true" editor-type-id="text-editor">
|
|
1096
|
-
<state relative-caret-position="
|
|
1097
|
-
<caret line="
|
|
1098
|
-
<folding>
|
|
1099
|
-
<element signature="e#0#40#0" expanded="true" />
|
|
1100
|
-
</folding>
|
|
1189
|
+
<state relative-caret-position="7875">
|
|
1190
|
+
<caret line="528" column="33" selection-start-line="528" selection-start-column="11" selection-end-line="528" selection-end-column="33" />
|
|
1101
1191
|
</state>
|
|
1102
1192
|
</provider>
|
|
1103
1193
|
</entry>
|
|
1104
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1194
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/core/Tree/Node.ts">
|
|
1105
1195
|
<provider selected="true" editor-type-id="text-editor">
|
|
1106
|
-
<state relative-caret-position="
|
|
1107
|
-
<caret line="
|
|
1108
|
-
<folding>
|
|
1109
|
-
<element signature="e#0#56#0" expanded="true" />
|
|
1110
|
-
</folding>
|
|
1196
|
+
<state relative-caret-position="4110">
|
|
1197
|
+
<caret line="274" selection-start-line="274" selection-end-line="274" />
|
|
1111
1198
|
</state>
|
|
1112
1199
|
</provider>
|
|
1113
1200
|
</entry>
|
|
1114
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1201
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/ams/AmsMappings.ts">
|
|
1115
1202
|
<provider selected="true" editor-type-id="text-editor">
|
|
1116
|
-
<state relative-caret-position="
|
|
1117
|
-
<caret line="
|
|
1203
|
+
<state relative-caret-position="135">
|
|
1204
|
+
<caret line="108" selection-start-line="108" selection-end-line="108" />
|
|
1118
1205
|
</state>
|
|
1119
1206
|
</provider>
|
|
1120
1207
|
</entry>
|
|
1121
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1208
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
|
|
1122
1209
|
<provider selected="true" editor-type-id="text-editor">
|
|
1123
|
-
<state relative-caret-position="
|
|
1124
|
-
<caret line="
|
|
1210
|
+
<state relative-caret-position="172">
|
|
1211
|
+
<caret line="105" column="54" selection-start-line="105" selection-start-column="54" selection-end-line="105" selection-end-column="63" />
|
|
1125
1212
|
<folding>
|
|
1126
1213
|
<element signature="n#style#0;n#div#0;n#!!top" expanded="true" />
|
|
1214
|
+
<element signature="n#style#0;n#hr#0;n#!!top" expanded="true" />
|
|
1215
|
+
<element signature="n#style#0;n#span#0;n#!!top" expanded="true" />
|
|
1127
1216
|
</folding>
|
|
1128
1217
|
</state>
|
|
1129
1218
|
</provider>
|
|
1130
1219
|
</entry>
|
|
1131
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
1220
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/common.ts">
|
|
1132
1221
|
<provider selected="true" editor-type-id="text-editor">
|
|
1133
|
-
<state relative-caret-position="
|
|
1134
|
-
<caret line="
|
|
1135
|
-
<folding>
|
|
1136
|
-
<element signature="e#0#59#0" expanded="true" />
|
|
1137
|
-
</folding>
|
|
1222
|
+
<state relative-caret-position="75">
|
|
1223
|
+
<caret line="5" column="13" selection-start-line="5" selection-start-column="13" selection-end-line="5" selection-end-column="13" />
|
|
1138
1224
|
</state>
|
|
1139
1225
|
</provider>
|
|
1140
1226
|
</entry>
|
|
1141
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
1227
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/common/consts.ts">
|
|
1142
1228
|
<provider selected="true" editor-type-id="text-editor">
|
|
1143
|
-
<state relative-caret-position="
|
|
1144
|
-
<caret line="
|
|
1229
|
+
<state relative-caret-position="414">
|
|
1230
|
+
<caret line="47" column="131" selection-start-line="47" selection-start-column="131" selection-end-line="47" selection-end-column="131" />
|
|
1145
1231
|
</state>
|
|
1146
1232
|
</provider>
|
|
1147
1233
|
</entry>
|
|
1148
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
1234
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/multi-column-row.ts">
|
|
1149
1235
|
<provider selected="true" editor-type-id="text-editor">
|
|
1150
|
-
<state relative-caret-position="
|
|
1151
|
-
<caret line="
|
|
1236
|
+
<state relative-caret-position="744">
|
|
1237
|
+
<caret line="95" selection-start-line="95" selection-end-line="95" />
|
|
1152
1238
|
<folding>
|
|
1153
|
-
<element signature="e#0#
|
|
1239
|
+
<element signature="e#0#54#0" expanded="true" />
|
|
1154
1240
|
</folding>
|
|
1155
1241
|
</state>
|
|
1156
1242
|
</provider>
|
|
1157
1243
|
</entry>
|
|
1158
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1244
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts">
|
|
1245
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1246
|
+
<state relative-caret-position="708">
|
|
1247
|
+
<caret line="64" selection-start-line="64" selection-end-line="64" />
|
|
1248
|
+
</state>
|
|
1249
|
+
</provider>
|
|
1250
|
+
</entry>
|
|
1251
|
+
<entry file="file://$PROJECT_DIR$/tests/_tabular.js">
|
|
1252
|
+
<provider selected="true" editor-type-id="text-editor" />
|
|
1253
|
+
</entry>
|
|
1254
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_tabular/_data.js">
|
|
1159
1255
|
<provider selected="true" editor-type-id="text-editor">
|
|
1160
|
-
<state relative-caret-position="
|
|
1161
|
-
<caret line="
|
|
1256
|
+
<state relative-caret-position="-24">
|
|
1257
|
+
<caret line="181" column="22" selection-start-line="181" selection-start-column="22" selection-end-line="181" selection-end-column="34" />
|
|
1258
|
+
<folding>
|
|
1259
|
+
<element signature="n#style#0;n#div#1;n#!!top" expanded="true" />
|
|
1260
|
+
<element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#1;n#div#2;n#!!top" expanded="true" />
|
|
1261
|
+
<element signature="e#18711#39243#0" />
|
|
1262
|
+
<element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#2;n#div#2;n#!!top" expanded="true" />
|
|
1263
|
+
<element signature="e#39247#52669#0" />
|
|
1264
|
+
<element signature="n#style#0;n#div#0;n#!!top" expanded="true" />
|
|
1265
|
+
<element signature="n#style#0;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1266
|
+
<element signature="n#style#0;n#td#0;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1267
|
+
<element signature="n#style#0;n#td#1;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1268
|
+
<element signature="n#style#0;n#td#2;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1269
|
+
<element signature="n#style#0;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1270
|
+
<element signature="n#style#0;n#td#0;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1271
|
+
<element signature="n#style#0;n#td#1;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1272
|
+
<element signature="n#style#0;n#td#2;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1273
|
+
<element signature="n#style#0;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1274
|
+
<element signature="n#style#0;n#td#0;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1275
|
+
<element signature="n#style#0;n#td#1;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1276
|
+
<element signature="n#style#0;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1277
|
+
<element signature="n#style#0;n#td#0;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1278
|
+
<element signature="n#style#0;n#td#1;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1279
|
+
<element signature="n#style#0;n#div#0;n#!!top" expanded="true" />
|
|
1280
|
+
<element signature="n#style#0;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1281
|
+
<element signature="n#style#0;n#td#0;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1282
|
+
<element signature="n#style#0;n#td#1;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1283
|
+
<element signature="n#style#0;n#td#2;n#tr#0;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1284
|
+
<element signature="n#style#0;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1285
|
+
<element signature="n#style#0;n#td#0;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1286
|
+
<element signature="n#style#0;n#td#1;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1287
|
+
<element signature="n#style#0;n#td#2;n#tr#1;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1288
|
+
<element signature="n#style#0;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1289
|
+
<element signature="n#style#0;n#td#0;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1290
|
+
<element signature="n#style#0;n#td#1;n#tr#2;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1291
|
+
<element signature="n#style#0;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1292
|
+
<element signature="n#style#0;n#td#0;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1293
|
+
<element signature="n#style#0;n#td#1;n#tr#3;n#tbody#0;n#table#0;n#div#0;n#div#0;n#!!top" expanded="true" />
|
|
1294
|
+
</folding>
|
|
1162
1295
|
</state>
|
|
1163
1296
|
</provider>
|
|
1164
1297
|
</entry>
|