mathpix-markdown-it 1.0.98 → 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 +603 -402
- 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/lib/styles/styles-fonts.d.ts +1 -1
- package/lib/styles/styles-fonts.js +1 -1
- package/lib/styles/styles-fonts.js.map +1 -1
- package/lib/styles/styles-tabular.js +1 -1
- package/lib/styles/styles-tabular.js.map +1 -1
- package/package.json +1 -1
package/.idea/workspace.xml
CHANGED
|
@@ -1,32 +1,17 @@
|
|
|
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="
|
|
5
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-
|
|
6
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/
|
|
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/rules.ts" line="
|
|
11
|
-
<bookmark url="file://$PROJECT_DIR$/
|
|
12
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts" line="319" mnemonic="1" />
|
|
13
|
-
<bookmark url="file://$PROJECT_DIR$/src/mathjax/index.ts" line="253" mnemonic="2" />
|
|
4
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" line="38" mnemonic="5" />
|
|
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
|
-
<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"
|
|
17
|
-
<change beforePath="$PROJECT_DIR$/es5/bundle.js" beforeDir="false" afterPath="$PROJECT_DIR$/es5/bundle.js" afterDir="false" />
|
|
18
|
-
<change beforePath="$PROJECT_DIR$/es5/index.js" beforeDir="false" afterPath="$PROJECT_DIR$/es5/index.js" afterDir="false" />
|
|
19
|
-
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/es5/bundle.js" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/es5/bundle.js" afterDir="false" />
|
|
20
|
-
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/es5/index.js" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/es5/index.js" afterDir="false" />
|
|
21
|
-
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js" afterDir="false" />
|
|
22
|
-
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js.map" afterDir="false" />
|
|
23
|
-
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-renderer-rules/render-lists.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-renderer-rules/render-lists.d.ts" afterDir="false" />
|
|
24
|
-
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" afterDir="false" />
|
|
25
|
-
<change beforePath="$PROJECT_DIR$/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js" afterDir="false" />
|
|
26
|
-
<change beforePath="$PROJECT_DIR$/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js.map" afterDir="false" />
|
|
27
|
-
<change beforePath="$PROJECT_DIR$/lib/markdown/md-renderer-rules/render-lists.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-renderer-rules/render-lists.d.ts" afterDir="false" />
|
|
28
|
-
<change beforePath="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" afterDir="false" />
|
|
29
|
-
</list>
|
|
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" />
|
|
30
15
|
<ignored path="$PROJECT_DIR$/es5/" />
|
|
31
16
|
<ignored path="$PROJECT_DIR$/.tmp/" />
|
|
32
17
|
<ignored path="$PROJECT_DIR$/temp/" />
|
|
@@ -41,37 +26,37 @@
|
|
|
41
26
|
<session id="1706553226">
|
|
42
27
|
<usages-collector id="statistics.lifecycle.project">
|
|
43
28
|
<counts>
|
|
44
|
-
<entry key="project.closed" value="
|
|
29
|
+
<entry key="project.closed" value="170" />
|
|
45
30
|
<entry key="project.open.time.10" value="6" />
|
|
46
|
-
<entry key="project.open.time.11" value="
|
|
31
|
+
<entry key="project.open.time.11" value="12" />
|
|
47
32
|
<entry key="project.open.time.12" value="5" />
|
|
48
|
-
<entry key="project.open.time.13" value="
|
|
49
|
-
<entry key="project.open.time.14" value="
|
|
50
|
-
<entry key="project.open.time.15" value="
|
|
51
|
-
<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" />
|
|
52
37
|
<entry key="project.open.time.18" value="3" />
|
|
53
38
|
<entry key="project.open.time.19" value="1" />
|
|
54
|
-
<entry key="project.open.time.2" value="
|
|
39
|
+
<entry key="project.open.time.2" value="9" />
|
|
55
40
|
<entry key="project.open.time.20" value="3" />
|
|
56
41
|
<entry key="project.open.time.22" value="4" />
|
|
57
|
-
<entry key="project.open.time.3" value="
|
|
42
|
+
<entry key="project.open.time.3" value="35" />
|
|
58
43
|
<entry key="project.open.time.30" value="1" />
|
|
59
44
|
<entry key="project.open.time.31" value="1" />
|
|
60
45
|
<entry key="project.open.time.32" value="1" />
|
|
61
46
|
<entry key="project.open.time.34" value="2" />
|
|
62
|
-
<entry key="project.open.time.4" value="
|
|
47
|
+
<entry key="project.open.time.4" value="44" />
|
|
63
48
|
<entry key="project.open.time.48" value="1" />
|
|
64
|
-
<entry key="project.open.time.5" value="
|
|
65
|
-
<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" />
|
|
66
51
|
<entry key="project.open.time.7" value="6" />
|
|
67
52
|
<entry key="project.open.time.8" value="2" />
|
|
68
53
|
<entry key="project.open.time.9" value="2" />
|
|
69
|
-
<entry key="project.opened" value="
|
|
54
|
+
<entry key="project.opened" value="194" />
|
|
70
55
|
</counts>
|
|
71
56
|
</usages-collector>
|
|
72
57
|
<usages-collector id="statistics.js.language.service.starts">
|
|
73
58
|
<counts>
|
|
74
|
-
<entry key="TypeScriptServerServiceImpl" value="
|
|
59
|
+
<entry key="TypeScriptServerServiceImpl" value="186" />
|
|
75
60
|
</counts>
|
|
76
61
|
</usages-collector>
|
|
77
62
|
<usages-collector id="statistics.file.extensions.open">
|
|
@@ -83,15 +68,15 @@
|
|
|
83
68
|
<entry key="gif" value="1" />
|
|
84
69
|
<entry key="gitignore" value="7" />
|
|
85
70
|
<entry key="html" value="11" />
|
|
86
|
-
<entry key="js" value="
|
|
87
|
-
<entry key="json" value="
|
|
71
|
+
<entry key="js" value="476" />
|
|
72
|
+
<entry key="json" value="63" />
|
|
88
73
|
<entry key="jsx" value="22" />
|
|
89
74
|
<entry key="lock" value="11" />
|
|
90
|
-
<entry key="md" value="
|
|
75
|
+
<entry key="md" value="44" />
|
|
91
76
|
<entry key="png" value="2" />
|
|
92
77
|
<entry key="sre" value="1" />
|
|
93
|
-
<entry key="ts" value="
|
|
94
|
-
<entry key="tsx" value="
|
|
78
|
+
<entry key="ts" value="1233" />
|
|
79
|
+
<entry key="tsx" value="48" />
|
|
95
80
|
</counts>
|
|
96
81
|
</usages-collector>
|
|
97
82
|
<usages-collector id="statistics.file.types.open">
|
|
@@ -101,13 +86,13 @@
|
|
|
101
86
|
<entry key="EJS" value="1" />
|
|
102
87
|
<entry key="HTML" value="11" />
|
|
103
88
|
<entry key="Image" value="3" />
|
|
104
|
-
<entry key="JSON" value="
|
|
89
|
+
<entry key="JSON" value="60" />
|
|
105
90
|
<entry key="JSX Harmony" value="22" />
|
|
106
|
-
<entry key="JavaScript" value="
|
|
107
|
-
<entry key="Markdown" value="
|
|
91
|
+
<entry key="JavaScript" value="477" />
|
|
92
|
+
<entry key="Markdown" value="44" />
|
|
108
93
|
<entry key="PLAIN_TEXT" value="8" />
|
|
109
|
-
<entry key="TypeScript" value="
|
|
110
|
-
<entry key="TypeScript JSX" value="
|
|
94
|
+
<entry key="TypeScript" value="1233" />
|
|
95
|
+
<entry key="TypeScript JSX" value="48" />
|
|
111
96
|
<entry key="tsconfig" value="4" />
|
|
112
97
|
<entry key="yarn.lock" value="10" />
|
|
113
98
|
</counts>
|
|
@@ -116,24 +101,24 @@
|
|
|
116
101
|
<counts>
|
|
117
102
|
<entry key="css" value="98" />
|
|
118
103
|
<entry key="html" value="47" />
|
|
119
|
-
<entry key="js" value="
|
|
120
|
-
<entry key="json" value="
|
|
104
|
+
<entry key="js" value="12661" />
|
|
105
|
+
<entry key="json" value="84" />
|
|
121
106
|
<entry key="jsx" value="1587" />
|
|
122
107
|
<entry key="md" value="2266" />
|
|
123
|
-
<entry key="ts" value="
|
|
124
|
-
<entry key="tsx" value="
|
|
108
|
+
<entry key="ts" value="110762" />
|
|
109
|
+
<entry key="tsx" value="1180" />
|
|
125
110
|
</counts>
|
|
126
111
|
</usages-collector>
|
|
127
112
|
<usages-collector id="statistics.file.types.edit">
|
|
128
113
|
<counts>
|
|
129
114
|
<entry key="CSS" value="98" />
|
|
130
|
-
<entry key="HTML" value="
|
|
131
|
-
<entry key="JSON" value="
|
|
115
|
+
<entry key="HTML" value="123" />
|
|
116
|
+
<entry key="JSON" value="58" />
|
|
132
117
|
<entry key="JSX Harmony" value="1587" />
|
|
133
|
-
<entry key="JavaScript" value="
|
|
118
|
+
<entry key="JavaScript" value="12674" />
|
|
134
119
|
<entry key="Markdown" value="2186" />
|
|
135
|
-
<entry key="TypeScript" value="
|
|
136
|
-
<entry key="TypeScript JSX" value="
|
|
120
|
+
<entry key="TypeScript" value="110753" />
|
|
121
|
+
<entry key="TypeScript JSX" value="1180" />
|
|
137
122
|
<entry key="tsconfig" value="26" />
|
|
138
123
|
</counts>
|
|
139
124
|
</usages-collector>
|
|
@@ -143,202 +128,224 @@
|
|
|
143
128
|
<favorites_list name="mathpix-markdown-it" />
|
|
144
129
|
</component>
|
|
145
130
|
<component name="FileEditorManager">
|
|
146
|
-
<splitter split-orientation="horizontal" split-proportion="0.
|
|
131
|
+
<splitter split-orientation="horizontal" split-proportion="0.4852071">
|
|
147
132
|
<split-first>
|
|
148
133
|
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
149
134
|
<file pinned="false" current-in-tab="false">
|
|
150
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-
|
|
135
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-table.ts">
|
|
151
136
|
<provider selected="true" editor-type-id="text-editor">
|
|
152
|
-
<state relative-caret-position="
|
|
153
|
-
<caret line="
|
|
154
|
-
<folding>
|
|
155
|
-
<element signature="e#0#40#0" expanded="true" />
|
|
156
|
-
</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" />
|
|
157
139
|
</state>
|
|
158
140
|
</provider>
|
|
159
141
|
</entry>
|
|
160
142
|
</file>
|
|
161
143
|
<file pinned="false" current-in-tab="false">
|
|
162
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
144
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/utils.ts">
|
|
163
145
|
<provider selected="true" editor-type-id="text-editor">
|
|
164
|
-
<state relative-caret-position="
|
|
165
|
-
<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" />
|
|
166
148
|
</state>
|
|
167
149
|
</provider>
|
|
168
150
|
</entry>
|
|
169
151
|
</file>
|
|
170
|
-
<file pinned="false" current-in-tab="
|
|
171
|
-
<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">
|
|
172
154
|
<provider selected="true" editor-type-id="text-editor">
|
|
173
|
-
<state relative-caret-position="
|
|
174
|
-
<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" />
|
|
175
157
|
<folding>
|
|
176
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" />
|
|
177
162
|
</folding>
|
|
178
163
|
</state>
|
|
179
164
|
</provider>
|
|
180
165
|
</entry>
|
|
181
166
|
</file>
|
|
182
167
|
<file pinned="false" current-in-tab="false">
|
|
183
|
-
<entry file="file://$PROJECT_DIR$/
|
|
168
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginTableTabular.ts">
|
|
184
169
|
<provider selected="true" editor-type-id="text-editor">
|
|
185
|
-
<state relative-caret-position="
|
|
186
|
-
<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" />
|
|
187
172
|
</state>
|
|
188
173
|
</provider>
|
|
189
174
|
</entry>
|
|
190
175
|
</file>
|
|
191
176
|
<file pinned="false" current-in-tab="false">
|
|
192
|
-
<entry file="file://$PROJECT_DIR$/
|
|
177
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/index.ts">
|
|
193
178
|
<provider selected="true" editor-type-id="text-editor">
|
|
194
|
-
<state relative-caret-position="
|
|
195
|
-
<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" />
|
|
196
181
|
</state>
|
|
197
182
|
</provider>
|
|
198
183
|
</entry>
|
|
199
184
|
</file>
|
|
200
185
|
<file pinned="false" current-in-tab="false">
|
|
201
|
-
<entry file="file://$PROJECT_DIR$/
|
|
186
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
|
|
202
187
|
<provider selected="true" editor-type-id="text-editor">
|
|
203
|
-
<state relative-caret-position="
|
|
204
|
-
<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>
|
|
205
196
|
</state>
|
|
206
197
|
</provider>
|
|
207
198
|
</entry>
|
|
208
199
|
</file>
|
|
209
200
|
<file pinned="false" current-in-tab="false">
|
|
210
|
-
<entry file="file://$PROJECT_DIR$/
|
|
211
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
212
|
-
</entry>
|
|
213
|
-
</file>
|
|
214
|
-
<file pinned="false" current-in-tab="false">
|
|
215
|
-
<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">
|
|
216
202
|
<provider selected="true" editor-type-id="text-editor">
|
|
217
|
-
<state relative-caret-position="
|
|
218
|
-
<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>
|
|
219
219
|
</state>
|
|
220
220
|
</provider>
|
|
221
221
|
</entry>
|
|
222
222
|
</file>
|
|
223
223
|
<file pinned="false" current-in-tab="false">
|
|
224
|
-
<entry file="file://$PROJECT_DIR$/
|
|
225
|
-
<provider selected="true" editor-type-id="
|
|
226
|
-
<state
|
|
227
|
-
<
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
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>
|
|
231
231
|
</state>
|
|
232
232
|
</provider>
|
|
233
233
|
</entry>
|
|
234
234
|
</file>
|
|
235
235
|
<file pinned="false" current-in-tab="false">
|
|
236
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
236
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/highlight/highlight-math-token.ts">
|
|
237
237
|
<provider selected="true" editor-type-id="text-editor">
|
|
238
|
-
<state relative-caret-position="
|
|
239
|
-
<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" />
|
|
240
240
|
<folding>
|
|
241
|
-
<element signature="e#0#
|
|
241
|
+
<element signature="e#0#68#0" expanded="true" />
|
|
242
242
|
</folding>
|
|
243
243
|
</state>
|
|
244
244
|
</provider>
|
|
245
245
|
</entry>
|
|
246
246
|
</file>
|
|
247
|
-
</leaf>
|
|
248
|
-
</split-first>
|
|
249
|
-
<split-second>
|
|
250
|
-
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
251
247
|
<file pinned="false" current-in-tab="true">
|
|
252
248
|
<entry file="file://$PROJECT_DIR$/package.json">
|
|
253
249
|
<provider selected="true" editor-type-id="text-editor">
|
|
254
250
|
<state relative-caret-position="30">
|
|
255
|
-
<caret line="2" column="
|
|
251
|
+
<caret line="2" column="19" selection-start-line="2" selection-start-column="19" selection-end-line="2" selection-end-column="19" />
|
|
256
252
|
</state>
|
|
257
253
|
</provider>
|
|
258
254
|
</entry>
|
|
259
255
|
</file>
|
|
256
|
+
</leaf>
|
|
257
|
+
</split-first>
|
|
258
|
+
<split-second>
|
|
259
|
+
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
260
260
|
<file pinned="false" current-in-tab="false">
|
|
261
|
-
<entry file="file://$PROJECT_DIR$/
|
|
262
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
261
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/index.ts">
|
|
262
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
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>
|
|
268
|
+
</state>
|
|
269
|
+
</provider>
|
|
263
270
|
</entry>
|
|
264
271
|
</file>
|
|
265
272
|
<file pinned="false" current-in-tab="false">
|
|
266
|
-
<entry file="file://$PROJECT_DIR$/
|
|
273
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdSetPositionsAndHighlight.ts">
|
|
267
274
|
<provider selected="true" editor-type-id="text-editor">
|
|
268
|
-
<state relative-caret-position="
|
|
269
|
-
<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>
|
|
270
280
|
</state>
|
|
271
281
|
</provider>
|
|
272
282
|
</entry>
|
|
273
283
|
</file>
|
|
274
|
-
<file pinned="false" current-in-tab="
|
|
275
|
-
<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">
|
|
276
286
|
<provider selected="true" editor-type-id="text-editor">
|
|
277
|
-
<state relative-caret-position="
|
|
278
|
-
<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" />
|
|
279
289
|
<folding>
|
|
280
|
-
<element signature="e#0#
|
|
290
|
+
<element signature="e#0#71#0" expanded="true" />
|
|
281
291
|
</folding>
|
|
282
292
|
</state>
|
|
283
293
|
</provider>
|
|
284
294
|
</entry>
|
|
285
295
|
</file>
|
|
286
296
|
<file pinned="false" current-in-tab="false">
|
|
287
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
297
|
+
<entry file="file://$PROJECT_DIR$/src/components/mathpix-markdown/index.tsx">
|
|
288
298
|
<provider selected="true" editor-type-id="text-editor">
|
|
289
|
-
<state relative-caret-position="
|
|
290
|
-
<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>
|
|
291
304
|
</state>
|
|
292
305
|
</provider>
|
|
293
306
|
</entry>
|
|
294
307
|
</file>
|
|
295
308
|
<file pinned="false" current-in-tab="false">
|
|
296
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
309
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/highlight/render-rule-highlights.ts">
|
|
297
310
|
<provider selected="true" editor-type-id="text-editor">
|
|
298
|
-
<state relative-caret-position="
|
|
299
|
-
<caret
|
|
300
|
-
<folding>
|
|
301
|
-
<element signature="e#0#42#0" expanded="true" />
|
|
302
|
-
</folding>
|
|
311
|
+
<state relative-caret-position="-1428">
|
|
312
|
+
<caret column="81" selection-start-column="81" selection-end-column="81" />
|
|
303
313
|
</state>
|
|
304
314
|
</provider>
|
|
305
315
|
</entry>
|
|
306
316
|
</file>
|
|
307
317
|
<file pinned="false" current-in-tab="false">
|
|
308
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
318
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/inline-rule.ts">
|
|
309
319
|
<provider selected="true" editor-type-id="text-editor">
|
|
310
|
-
<state relative-caret-position="
|
|
311
|
-
<caret line="
|
|
312
|
-
<folding>
|
|
313
|
-
<element signature="e#0#43#0" expanded="true" />
|
|
314
|
-
</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" />
|
|
315
322
|
</state>
|
|
316
323
|
</provider>
|
|
317
324
|
</entry>
|
|
318
325
|
</file>
|
|
319
326
|
<file pinned="false" current-in-tab="false">
|
|
320
|
-
<entry file="file://$PROJECT_DIR$/
|
|
327
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/base/BaseMappings.ts">
|
|
321
328
|
<provider selected="true" editor-type-id="text-editor">
|
|
322
|
-
<state relative-caret-position="
|
|
323
|
-
<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" />
|
|
324
331
|
</state>
|
|
325
332
|
</provider>
|
|
326
333
|
</entry>
|
|
327
334
|
</file>
|
|
328
335
|
<file pinned="false" current-in-tab="false">
|
|
329
|
-
<entry file="file://$PROJECT_DIR$/
|
|
336
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/highlight/common.ts">
|
|
330
337
|
<provider selected="true" editor-type-id="text-editor">
|
|
331
|
-
<state relative-caret-position="
|
|
332
|
-
<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" />
|
|
333
340
|
</state>
|
|
334
341
|
</provider>
|
|
335
342
|
</entry>
|
|
336
343
|
</file>
|
|
337
344
|
<file pinned="false" current-in-tab="false">
|
|
338
|
-
<entry file="file://$PROJECT_DIR$/
|
|
345
|
+
<entry file="file://$PROJECT_DIR$/src/styles/styles-code.ts">
|
|
339
346
|
<provider selected="true" editor-type-id="text-editor">
|
|
340
|
-
<state relative-caret-position="
|
|
341
|
-
<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" />
|
|
342
349
|
</state>
|
|
343
350
|
</provider>
|
|
344
351
|
</entry>
|
|
@@ -356,36 +363,36 @@
|
|
|
356
363
|
</component>
|
|
357
364
|
<component name="FindInProjectRecents">
|
|
358
365
|
<findStrings>
|
|
359
|
-
<find>
|
|
360
|
-
<find>
|
|
361
|
-
<find>
|
|
362
|
-
<find>
|
|
363
|
-
<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>
|
|
364
383
|
<find>console.log</find>
|
|
365
|
-
<find>
|
|
366
|
-
<find
|
|
367
|
-
<find>
|
|
368
|
-
<find>
|
|
369
|
-
<find>
|
|
370
|
-
<find>
|
|
371
|
-
<find>
|
|
372
|
-
<find>
|
|
373
|
-
<find>
|
|
374
|
-
<find>
|
|
375
|
-
<find>
|
|
376
|
-
<find>
|
|
377
|
-
<find>renderTabularInline</find>
|
|
378
|
-
<find>include_tsv</find>
|
|
379
|
-
<find>env.tabulare</find>
|
|
380
|
-
<find>tsv</find>
|
|
381
|
-
<find>mathml</find>
|
|
382
|
-
<find>copy</find>
|
|
383
|
-
<find>parseMarkdownByHTML</find>
|
|
384
|
-
<find>formatSourceHtml</find>
|
|
385
|
-
<find>formatSource</find>
|
|
386
|
-
<find>value</find>
|
|
387
|
-
<find>MATHML</find>
|
|
388
|
-
<find>&</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>
|
|
389
396
|
</findStrings>
|
|
390
397
|
<replaceStrings>
|
|
391
398
|
<replace>MJSimple</replace>
|
|
@@ -394,14 +401,9 @@
|
|
|
394
401
|
<replace>[\w\s]+</replace>
|
|
395
402
|
<replace>.table-of-contents</replace>
|
|
396
403
|
<replace>operation</replace>
|
|
404
|
+
<replace />
|
|
397
405
|
</replaceStrings>
|
|
398
406
|
<dirStrings>
|
|
399
|
-
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/core/Tree</dir>
|
|
400
|
-
<dir>$PROJECT_DIR$/tests/_data/_wolfram</dir>
|
|
401
|
-
<dir>$PROJECT_DIR$/src/mathjax/serialized-wolfram</dir>
|
|
402
|
-
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex</dir>
|
|
403
|
-
<dir>$PROJECT_DIR$/src/mathjax/helpers/array</dir>
|
|
404
|
-
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/core</dir>
|
|
405
407
|
<dir>$PROJECT_DIR$/src/contex-menu/menu</dir>
|
|
406
408
|
<dir>$PROJECT_DIR$/src/mathjax/helpers</dir>
|
|
407
409
|
<dir>$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular</dir>
|
|
@@ -409,23 +411,29 @@
|
|
|
409
411
|
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib/rules_inline</dir>
|
|
410
412
|
<dir>$PROJECT_DIR$/src/markdown/md-chemistry</dir>
|
|
411
413
|
<dir>$PROJECT_DIR$/node_modules</dir>
|
|
412
|
-
<dir>$PROJECT_DIR$/node_modules/mathjax-full/js</dir>
|
|
413
|
-
<dir>$PROJECT_DIR$/src/components</dir>
|
|
414
|
-
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts</dir>
|
|
415
|
-
<dir>$PROJECT_DIR$/tests</dir>
|
|
416
414
|
<dir>$PROJECT_DIR$/tests/_data/_tsv_with_array</dir>
|
|
417
415
|
<dir>$PROJECT_DIR$/tests/_data/_tsv</dir>
|
|
418
416
|
<dir>$PROJECT_DIR$/tests/_data/_csv</dir>
|
|
419
417
|
<dir>$PROJECT_DIR$/tests/_data/_ascii</dir>
|
|
420
418
|
<dir>$PROJECT_DIR$/src/mathjax/serialized-ascii</dir>
|
|
421
|
-
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
|
|
422
419
|
<dir>$PROJECT_DIR$/src/contex-menu</dir>
|
|
423
420
|
<dir>$PROJECT_DIR$/src/mathpix-markdown-model</dir>
|
|
424
|
-
<dir>$PROJECT_DIR$/src/mathjax</dir>
|
|
425
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>
|
|
426
430
|
<dir>$PROJECT_DIR$/src/markdown</dir>
|
|
427
|
-
<dir>$PROJECT_DIR$/src</dir>
|
|
431
|
+
<dir>$PROJECT_DIR$/src/mathjax</dir>
|
|
428
432
|
<dir>$PROJECT_DIR$/src/markdown/md-block-rule</dir>
|
|
433
|
+
<dir>$PROJECT_DIR$/src/styles</dir>
|
|
434
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
|
|
435
|
+
<dir>$PROJECT_DIR$/src</dir>
|
|
436
|
+
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts</dir>
|
|
429
437
|
</dirStrings>
|
|
430
438
|
</component>
|
|
431
439
|
<component name="Git.Settings">
|
|
@@ -434,57 +442,57 @@
|
|
|
434
442
|
<component name="IdeDocumentHistory">
|
|
435
443
|
<option name="CHANGED_PATHS">
|
|
436
444
|
<list>
|
|
437
|
-
<option value="$PROJECT_DIR$/src/markdown/mdPluginText.ts" />
|
|
438
|
-
<option value="$PROJECT_DIR$/tests/_data/_tokenPositions/_data.js" />
|
|
439
|
-
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/lists.ts" />
|
|
440
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/lists/index.ts" />
|
|
441
|
-
<option value="$PROJECT_DIR$/tests/_data/_tokenPositions/_data_lists.js" />
|
|
442
445
|
<option value="$PROJECT_DIR$/tests/_tokenPositions.js" />
|
|
443
|
-
<option value="$PROJECT_DIR$/
|
|
444
|
-
<option value="$PROJECT_DIR$/src/markdown/md-
|
|
445
|
-
<option value="$PROJECT_DIR$/src/
|
|
446
|
-
<option value="$PROJECT_DIR$/
|
|
447
|
-
<option value="$PROJECT_DIR$/
|
|
448
|
-
<option value="$PROJECT_DIR$/
|
|
449
|
-
<option value="$PROJECT_DIR$/src/
|
|
450
|
-
<option value="$PROJECT_DIR$/
|
|
451
|
-
<option value="$PROJECT_DIR$/tests/
|
|
452
|
-
<option value="$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/ParseUtil.js" />
|
|
453
|
-
<option value="$PROJECT_DIR$/src/contex-menu/menu/consts.ts" />
|
|
454
|
-
<option value="$PROJECT_DIR$/src/contex-menu/menu/menu-item-actions.ts" />
|
|
455
|
-
<option value="$PROJECT_DIR$/src/contex-menu/menu/index.ts" />
|
|
456
|
-
<option value="$PROJECT_DIR$/src/markdown/common/csv.ts" />
|
|
457
|
-
<option value="$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_gathered_aligned.js" />
|
|
458
|
-
<option value="$PROJECT_DIR$/tests/_tsv_with_array.js" />
|
|
459
|
-
<option value="$PROJECT_DIR$/tests/_ascii.js" />
|
|
460
|
-
<option value="$PROJECT_DIR$/examples/run.js" />
|
|
461
|
-
<option value="$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/.env" />
|
|
462
|
-
<option value="$PROJECT_DIR$/tests/_data/_tsv_with_array/_data.js" />
|
|
463
|
-
<option value="$PROJECT_DIR$/tests/_data/_csv/_data.js" />
|
|
464
|
-
<option value="$PROJECT_DIR$/examples/react-app/use-parseMarkdownByHTML-method/src/form.jsx" />
|
|
465
|
-
<option value="$PROJECT_DIR$/src/markdown/md-core-rules/generate-tsv-csv.ts" />
|
|
466
|
-
<option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/index.ts" />
|
|
467
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts" />
|
|
468
|
-
<option value="$PROJECT_DIR$/tests/_csv.js" />
|
|
469
|
-
<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" />
|
|
470
455
|
<option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts" />
|
|
471
|
-
<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" />
|
|
472
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" />
|
|
473
478
|
<option value="$PROJECT_DIR$/src/mathpix-markdown-model/index.ts" />
|
|
474
|
-
<option value="$PROJECT_DIR$/
|
|
475
|
-
<option value="$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_include_sub_math.js" />
|
|
476
|
-
<option value="$PROJECT_DIR$/README.md" />
|
|
479
|
+
<option value="$PROJECT_DIR$/src/markdown/utils.ts" />
|
|
477
480
|
<option value="$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" />
|
|
478
|
-
<option value="$PROJECT_DIR$/src/markdown/
|
|
479
|
-
<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" />
|
|
480
483
|
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" />
|
|
481
|
-
<option value="$PROJECT_DIR$/src/
|
|
482
|
-
<option value="$PROJECT_DIR$/src/contex-menu/menu/menu-item.ts" />
|
|
483
|
-
<option value="$PROJECT_DIR$/src/helpers/parse-mmd-element.ts" />
|
|
484
|
+
<option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/render-lists.ts" />
|
|
484
485
|
<option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts" />
|
|
485
|
-
<option value="$PROJECT_DIR$/
|
|
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" />
|
|
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" />
|
|
486
495
|
<option value="$PROJECT_DIR$/package.json" />
|
|
487
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" />
|
|
488
496
|
</list>
|
|
489
497
|
</option>
|
|
490
498
|
</component>
|
|
@@ -515,8 +523,9 @@
|
|
|
515
523
|
</packageJsonPaths>
|
|
516
524
|
</component>
|
|
517
525
|
<component name="ProjectFrameBounds">
|
|
526
|
+
<option name="x" value="6" />
|
|
518
527
|
<option name="y" value="23" />
|
|
519
|
-
<option name="width" value="
|
|
528
|
+
<option name="width" value="1615" />
|
|
520
529
|
<option name="height" value="974" />
|
|
521
530
|
</component>
|
|
522
531
|
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
|
@@ -525,7 +534,6 @@
|
|
|
525
534
|
<foldersAlwaysOnTop value="true" />
|
|
526
535
|
</navigator>
|
|
527
536
|
<panes>
|
|
528
|
-
<pane id="Scope" />
|
|
529
537
|
<pane id="ProjectPane">
|
|
530
538
|
<subPane>
|
|
531
539
|
<expand>
|
|
@@ -533,29 +541,78 @@
|
|
|
533
541
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
534
542
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
535
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>
|
|
536
591
|
<path>
|
|
537
592
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
538
593
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
539
594
|
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
595
|
+
<item name="helpers" type="462c0819:PsiDirectoryNode" />
|
|
540
596
|
</path>
|
|
541
597
|
<path>
|
|
542
598
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
543
599
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
544
600
|
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
545
|
-
<item name="
|
|
601
|
+
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
546
602
|
</path>
|
|
547
603
|
<path>
|
|
548
604
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
549
605
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
550
606
|
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
551
|
-
<item name="
|
|
552
|
-
<item name="
|
|
607
|
+
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
608
|
+
<item name="common" type="462c0819:PsiDirectoryNode" />
|
|
553
609
|
</path>
|
|
554
610
|
<path>
|
|
555
611
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
556
612
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
557
613
|
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
558
614
|
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
615
|
+
<item name="highlight" type="462c0819:PsiDirectoryNode" />
|
|
559
616
|
</path>
|
|
560
617
|
<path>
|
|
561
618
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
@@ -564,6 +621,28 @@
|
|
|
564
621
|
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
565
622
|
<item name="md-block-rule" type="462c0819:PsiDirectoryNode" />
|
|
566
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>
|
|
632
|
+
<path>
|
|
633
|
+
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
634
|
+
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
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" />
|
|
645
|
+
</path>
|
|
567
646
|
<path>
|
|
568
647
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
569
648
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
@@ -576,6 +655,12 @@
|
|
|
576
655
|
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
577
656
|
<item name="mathpix-markdown-model" type="462c0819:PsiDirectoryNode" />
|
|
578
657
|
</path>
|
|
658
|
+
<path>
|
|
659
|
+
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
660
|
+
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
661
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
662
|
+
<item name="styles" type="462c0819:PsiDirectoryNode" />
|
|
663
|
+
</path>
|
|
579
664
|
<path>
|
|
580
665
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
581
666
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
@@ -592,12 +677,13 @@
|
|
|
592
677
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
593
678
|
<item name="tests" type="462c0819:PsiDirectoryNode" />
|
|
594
679
|
<item name="_data" type="462c0819:PsiDirectoryNode" />
|
|
595
|
-
<item name="
|
|
680
|
+
<item name="_tokenPositions" type="462c0819:PsiDirectoryNode" />
|
|
596
681
|
</path>
|
|
597
682
|
</expand>
|
|
598
683
|
<select />
|
|
599
684
|
</subPane>
|
|
600
685
|
</pane>
|
|
686
|
+
<pane id="Scope" />
|
|
601
687
|
</panes>
|
|
602
688
|
</component>
|
|
603
689
|
<component name="PropertiesComponent">
|
|
@@ -614,17 +700,17 @@
|
|
|
614
700
|
<property name="typescript-compiler-editor-notification" value="false" />
|
|
615
701
|
</component>
|
|
616
702
|
<component name="RecentsManager">
|
|
617
|
-
<key name="CopyFile.RECENT_KEYS">
|
|
618
|
-
<recent name="$PROJECT_DIR$/src/mathjax/helpers" />
|
|
619
|
-
<recent name="$PROJECT_DIR$/examples/react-app/use-toc" />
|
|
620
|
-
<recent name="$PROJECT_DIR$/src/mathjax/serialized-wolfram" />
|
|
621
|
-
</key>
|
|
622
703
|
<key name="MoveFile.RECENT_KEYS">
|
|
704
|
+
<recent name="$PROJECT_DIR$/src/markdown" />
|
|
705
|
+
<recent name="$PROJECT_DIR$/src/markdown/highlight" />
|
|
623
706
|
<recent name="$PROJECT_DIR$/tests" />
|
|
624
707
|
<recent name="$PROJECT_DIR$/doc/images" />
|
|
625
708
|
<recent name="$PROJECT_DIR$/examples/tests-md" />
|
|
626
|
-
|
|
627
|
-
|
|
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" />
|
|
628
714
|
</key>
|
|
629
715
|
</component>
|
|
630
716
|
<component name="RunDashboard">
|
|
@@ -843,11 +929,28 @@
|
|
|
843
929
|
<workItem from="1683875240276" duration="94000" />
|
|
844
930
|
<workItem from="1684138078632" duration="3134000" />
|
|
845
931
|
<workItem from="1684145514952" duration="161000" />
|
|
932
|
+
<workItem from="1684160635131" duration="191000" />
|
|
933
|
+
<workItem from="1684213190626" duration="3996000" />
|
|
934
|
+
<workItem from="1684223503106" duration="3033000" />
|
|
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" />
|
|
846
949
|
</task>
|
|
847
950
|
<servers />
|
|
848
951
|
</component>
|
|
849
952
|
<component name="TimeTrackingManager">
|
|
850
|
-
<option name="totallyTimeSpent" value="
|
|
953
|
+
<option name="totallyTimeSpent" value="2409447000" />
|
|
851
954
|
</component>
|
|
852
955
|
<component name="TodoView">
|
|
853
956
|
<todo-panel id="selected-file">
|
|
@@ -859,9 +962,9 @@
|
|
|
859
962
|
</todo-panel>
|
|
860
963
|
</component>
|
|
861
964
|
<component name="ToolWindowManager">
|
|
862
|
-
<frame x="
|
|
965
|
+
<frame x="6" y="43" width="1615" height="974" extended-state="0" />
|
|
863
966
|
<layout>
|
|
864
|
-
<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" />
|
|
865
968
|
<window_info id="Structure" order="1" sideWeight="0.5060484" side_tool="true" weight="0.21637055" />
|
|
866
969
|
<window_info id="npm" order="2" side_tool="true" />
|
|
867
970
|
<window_info id="DB Browser" order="3" />
|
|
@@ -880,7 +983,7 @@
|
|
|
880
983
|
<window_info anchor="bottom" id="Version Control" order="9" show_stripe_button="false" />
|
|
881
984
|
<window_info anchor="bottom" id="DB Execution Console" order="10" />
|
|
882
985
|
<window_info anchor="bottom" id="TypeScript" order="11" />
|
|
883
|
-
<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" />
|
|
884
987
|
<window_info anchor="bottom" id="Event Log" order="13" sideWeight="0.5006485" side_tool="true" weight="0.24063565" />
|
|
885
988
|
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
|
886
989
|
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
|
@@ -924,7 +1027,7 @@
|
|
|
924
1027
|
<breakpoints>
|
|
925
1028
|
<line-breakpoint enabled="true" type="javascript">
|
|
926
1029
|
<url>file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts</url>
|
|
927
|
-
<line>
|
|
1030
|
+
<line>355</line>
|
|
928
1031
|
<option name="timeStamp" value="16" />
|
|
929
1032
|
</line-breakpoint>
|
|
930
1033
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -943,12 +1046,12 @@
|
|
|
943
1046
|
</line-breakpoint>
|
|
944
1047
|
<line-breakpoint enabled="true" type="javascript">
|
|
945
1048
|
<url>file://$PROJECT_DIR$/src/markdown/md-theorem/index.ts</url>
|
|
946
|
-
<line>
|
|
1049
|
+
<line>4</line>
|
|
947
1050
|
<option name="timeStamp" value="23" />
|
|
948
1051
|
</line-breakpoint>
|
|
949
1052
|
<line-breakpoint enabled="true" type="javascript">
|
|
950
1053
|
<url>file://$PROJECT_DIR$/src/markdown/md-theorem/index.ts</url>
|
|
951
|
-
<line>
|
|
1054
|
+
<line>5</line>
|
|
952
1055
|
<option name="timeStamp" value="25" />
|
|
953
1056
|
</line-breakpoint>
|
|
954
1057
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -968,7 +1071,7 @@
|
|
|
968
1071
|
</line-breakpoint>
|
|
969
1072
|
<line-breakpoint enabled="true" type="javascript">
|
|
970
1073
|
<url>file://$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts</url>
|
|
971
|
-
<line>
|
|
1074
|
+
<line>467</line>
|
|
972
1075
|
<option name="timeStamp" value="29" />
|
|
973
1076
|
</line-breakpoint>
|
|
974
1077
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -978,7 +1081,7 @@
|
|
|
978
1081
|
</line-breakpoint>
|
|
979
1082
|
<line-breakpoint enabled="true" type="javascript">
|
|
980
1083
|
<url>file://$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts</url>
|
|
981
|
-
<line>
|
|
1084
|
+
<line>792</line>
|
|
982
1085
|
<option name="timeStamp" value="32" />
|
|
983
1086
|
</line-breakpoint>
|
|
984
1087
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -988,12 +1091,12 @@
|
|
|
988
1091
|
</line-breakpoint>
|
|
989
1092
|
<line-breakpoint enabled="true" type="javascript">
|
|
990
1093
|
<url>file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts</url>
|
|
991
|
-
<line>
|
|
1094
|
+
<line>1087</line>
|
|
992
1095
|
<option name="timeStamp" value="36" />
|
|
993
1096
|
</line-breakpoint>
|
|
994
1097
|
<line-breakpoint enabled="true" type="javascript">
|
|
995
1098
|
<url>file://$PROJECT_DIR$/src/markdown/mdPluginText.ts</url>
|
|
996
|
-
<line>
|
|
1099
|
+
<line>350</line>
|
|
997
1100
|
<option name="timeStamp" value="37" />
|
|
998
1101
|
</line-breakpoint>
|
|
999
1102
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -1013,7 +1116,7 @@
|
|
|
1013
1116
|
</line-breakpoint>
|
|
1014
1117
|
<line-breakpoint enabled="true" type="javascript">
|
|
1015
1118
|
<url>file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts</url>
|
|
1016
|
-
<line>
|
|
1119
|
+
<line>73</line>
|
|
1017
1120
|
<option name="timeStamp" value="43" />
|
|
1018
1121
|
</line-breakpoint>
|
|
1019
1122
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -1028,342 +1131,440 @@
|
|
|
1028
1131
|
</line-breakpoint>
|
|
1029
1132
|
<line-breakpoint enabled="true" type="javascript">
|
|
1030
1133
|
<url>file://$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts</url>
|
|
1031
|
-
<line>
|
|
1134
|
+
<line>563</line>
|
|
1032
1135
|
<option name="timeStamp" value="46" />
|
|
1033
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>
|
|
1034
1146
|
</breakpoints>
|
|
1035
1147
|
</breakpoint-manager>
|
|
1036
1148
|
</component>
|
|
1037
1149
|
<component name="editorHistoryManager">
|
|
1038
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1150
|
+
<entry file="file://$PROJECT_DIR$/src/components/mathpix-loader/index.tsx">
|
|
1039
1151
|
<provider selected="true" editor-type-id="text-editor">
|
|
1040
|
-
<state relative-caret-position="
|
|
1041
|
-
<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" />
|
|
1042
1154
|
</state>
|
|
1043
1155
|
</provider>
|
|
1044
1156
|
</entry>
|
|
1045
|
-
<entry file="file://$PROJECT_DIR$/node_modules/
|
|
1157
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_core/linkify.js">
|
|
1046
1158
|
<provider selected="true" editor-type-id="text-editor">
|
|
1047
|
-
<state relative-caret-position="
|
|
1048
|
-
<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" />
|
|
1049
1161
|
</state>
|
|
1050
1162
|
</provider>
|
|
1051
1163
|
</entry>
|
|
1052
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1164
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_core/replacements.js">
|
|
1165
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1166
|
+
<state relative-caret-position="-1176" />
|
|
1167
|
+
</provider>
|
|
1168
|
+
</entry>
|
|
1169
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/parser_core.js">
|
|
1053
1170
|
<provider selected="true" editor-type-id="text-editor">
|
|
1054
|
-
<state relative-caret-position="
|
|
1055
|
-
<caret line="
|
|
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" />
|
|
1056
1173
|
</state>
|
|
1057
1174
|
</provider>
|
|
1058
1175
|
</entry>
|
|
1059
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1176
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_core/smartquotes.js">
|
|
1060
1177
|
<provider selected="true" editor-type-id="text-editor">
|
|
1061
|
-
<state relative-caret-position="
|
|
1062
|
-
<caret line="
|
|
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" />
|
|
1063
1180
|
</state>
|
|
1064
1181
|
</provider>
|
|
1065
1182
|
</entry>
|
|
1066
|
-
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1183
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it-emoji/README.md">
|
|
1184
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
1185
|
+
<state split_layout="SPLIT">
|
|
1186
|
+
<first_editor relative-caret-position="-1104" />
|
|
1187
|
+
<second_editor />
|
|
1188
|
+
</state>
|
|
1189
|
+
</provider>
|
|
1070
1190
|
</entry>
|
|
1071
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1191
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdOptions.ts">
|
|
1072
1192
|
<provider selected="true" editor-type-id="text-editor" />
|
|
1073
1193
|
</entry>
|
|
1074
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1075
|
-
<entry file="file://$PROJECT_DIR$/tests/_data/_csv/_data.js">
|
|
1194
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/rules.ts">
|
|
1076
1195
|
<provider selected="true" editor-type-id="text-editor">
|
|
1077
|
-
<state relative-caret-position="
|
|
1078
|
-
<caret line="
|
|
1196
|
+
<state relative-caret-position="555">
|
|
1197
|
+
<caret line="40" selection-start-line="40" selection-end-line="40" />
|
|
1079
1198
|
</state>
|
|
1080
1199
|
</provider>
|
|
1081
1200
|
</entry>
|
|
1082
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
1083
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts">
|
|
1201
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginCollapsible.ts">
|
|
1084
1202
|
<provider selected="true" editor-type-id="text-editor">
|
|
1085
|
-
<state relative-caret-position="
|
|
1086
|
-
<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" />
|
|
1087
1205
|
</state>
|
|
1088
1206
|
</provider>
|
|
1089
1207
|
</entry>
|
|
1090
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1208
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/index.js">
|
|
1091
1209
|
<provider selected="true" editor-type-id="text-editor">
|
|
1092
|
-
<state relative-caret-position="
|
|
1093
|
-
<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" />
|
|
1094
1212
|
</state>
|
|
1095
1213
|
</provider>
|
|
1096
1214
|
</entry>
|
|
1097
|
-
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
<state split_layout="FIRST">
|
|
1102
|
-
<first_editor />
|
|
1103
|
-
<second_editor />
|
|
1215
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it-emoji/lib/replace.js">
|
|
1216
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
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" />
|
|
1104
1219
|
</state>
|
|
1105
1220
|
</provider>
|
|
1106
1221
|
</entry>
|
|
1107
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1108
|
-
<provider selected="true" editor-type-id="
|
|
1109
|
-
<state
|
|
1110
|
-
<
|
|
1111
|
-
<second_editor />
|
|
1222
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it-emoji/index.js">
|
|
1223
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
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" />
|
|
1112
1226
|
</state>
|
|
1113
1227
|
</provider>
|
|
1114
1228
|
</entry>
|
|
1115
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
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">
|
|
1116
1232
|
<provider selected="true" editor-type-id="text-editor">
|
|
1117
|
-
<state relative-caret-position="
|
|
1118
|
-
<caret line="
|
|
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" />
|
|
1119
1235
|
</state>
|
|
1120
1236
|
</provider>
|
|
1121
1237
|
</entry>
|
|
1122
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1238
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/token.js">
|
|
1123
1239
|
<provider selected="true" editor-type-id="text-editor">
|
|
1124
|
-
<state relative-caret-position="
|
|
1125
|
-
<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" />
|
|
1126
1242
|
</state>
|
|
1127
1243
|
</provider>
|
|
1128
1244
|
</entry>
|
|
1129
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1245
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/renderer.js">
|
|
1130
1246
|
<provider selected="true" editor-type-id="text-editor">
|
|
1131
|
-
<state relative-caret-position="
|
|
1132
|
-
<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" />
|
|
1133
1249
|
</state>
|
|
1134
1250
|
</provider>
|
|
1135
1251
|
</entry>
|
|
1136
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1252
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block/blockquote.js">
|
|
1137
1253
|
<provider selected="true" editor-type-id="text-editor">
|
|
1138
|
-
<state relative-caret-position="
|
|
1139
|
-
<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" />
|
|
1140
1256
|
</state>
|
|
1141
1257
|
</provider>
|
|
1142
1258
|
</entry>
|
|
1143
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1259
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mathpix-markdown-plugins.tsx">
|
|
1144
1260
|
<provider selected="true" editor-type-id="text-editor">
|
|
1145
|
-
<state relative-caret-position="
|
|
1146
|
-
<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" />
|
|
1147
1263
|
</state>
|
|
1148
1264
|
</provider>
|
|
1149
1265
|
</entry>
|
|
1150
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1266
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/ams/AmsMappings.ts">
|
|
1151
1267
|
<provider selected="true" editor-type-id="text-editor">
|
|
1152
|
-
<state relative-caret-position="
|
|
1153
|
-
<caret line="
|
|
1154
|
-
<folding>
|
|
1155
|
-
<element signature="e#0#31#0" expanded="true" />
|
|
1156
|
-
</folding>
|
|
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" />
|
|
1157
1270
|
</state>
|
|
1158
1271
|
</provider>
|
|
1159
1272
|
</entry>
|
|
1160
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1273
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/my-BaseMappings.ts">
|
|
1161
1274
|
<provider selected="true" editor-type-id="text-editor">
|
|
1162
|
-
<state relative-caret-position="
|
|
1163
|
-
<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" />
|
|
1164
1277
|
</state>
|
|
1165
1278
|
</provider>
|
|
1166
1279
|
</entry>
|
|
1167
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1280
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginConfigured.ts">
|
|
1168
1281
|
<provider selected="true" editor-type-id="text-editor">
|
|
1169
|
-
<state relative-caret-position="
|
|
1170
|
-
<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" />
|
|
1284
|
+
<folding>
|
|
1285
|
+
<element signature="e#0#42#0" expanded="true" />
|
|
1286
|
+
</folding>
|
|
1171
1287
|
</state>
|
|
1172
1288
|
</provider>
|
|
1173
1289
|
</entry>
|
|
1174
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1290
|
+
<entry file="file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts">
|
|
1175
1291
|
<provider selected="true" editor-type-id="text-editor">
|
|
1176
|
-
<state relative-caret-position="
|
|
1177
|
-
<caret line="
|
|
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>
|
|
1178
1298
|
</state>
|
|
1179
1299
|
</provider>
|
|
1180
1300
|
</entry>
|
|
1181
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1301
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/common/consts.ts">
|
|
1182
1302
|
<provider selected="true" editor-type-id="text-editor">
|
|
1183
|
-
<state relative-caret-position="
|
|
1184
|
-
<caret line="
|
|
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" />
|
|
1185
1305
|
</state>
|
|
1186
1306
|
</provider>
|
|
1187
1307
|
</entry>
|
|
1188
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
1308
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/index.ts">
|
|
1189
1309
|
<provider selected="true" editor-type-id="text-editor">
|
|
1190
|
-
<state relative-caret-position="
|
|
1191
|
-
<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>
|
|
1192
1315
|
</state>
|
|
1193
1316
|
</provider>
|
|
1194
1317
|
</entry>
|
|
1195
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1318
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/index.ts">
|
|
1196
1319
|
<provider selected="true" editor-type-id="text-editor">
|
|
1197
|
-
<state relative-caret-position="
|
|
1198
|
-
<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" />
|
|
1322
|
+
<folding>
|
|
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" />
|
|
1330
|
+
</folding>
|
|
1199
1331
|
</state>
|
|
1200
1332
|
</provider>
|
|
1201
1333
|
</entry>
|
|
1202
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
1334
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts">
|
|
1203
1335
|
<provider selected="true" editor-type-id="text-editor">
|
|
1204
|
-
<state relative-caret-position="
|
|
1205
|
-
<caret line="
|
|
1336
|
+
<state relative-caret-position="139">
|
|
1337
|
+
<caret line="803" selection-start-line="803" selection-end-line="803" />
|
|
1206
1338
|
<folding>
|
|
1207
|
-
<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" />
|
|
1208
1342
|
</folding>
|
|
1209
1343
|
</state>
|
|
1210
1344
|
</provider>
|
|
1211
1345
|
</entry>
|
|
1212
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1213
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
1214
|
-
</entry>
|
|
1215
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts">
|
|
1346
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdSetPositionsAndHighlight.ts">
|
|
1216
1347
|
<provider selected="true" editor-type-id="text-editor">
|
|
1217
|
-
<state relative-caret-position="
|
|
1218
|
-
<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" />
|
|
1219
1350
|
<folding>
|
|
1220
|
-
<element signature="e#0#
|
|
1351
|
+
<element signature="e#0#41#0" expanded="true" />
|
|
1221
1352
|
</folding>
|
|
1222
1353
|
</state>
|
|
1223
1354
|
</provider>
|
|
1224
1355
|
</entry>
|
|
1225
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-
|
|
1356
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/inline-rule.ts">
|
|
1226
1357
|
<provider selected="true" editor-type-id="text-editor">
|
|
1227
|
-
<state relative-caret-position="
|
|
1228
|
-
<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" />
|
|
1229
1360
|
</state>
|
|
1230
1361
|
</provider>
|
|
1231
1362
|
</entry>
|
|
1232
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1363
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts">
|
|
1233
1364
|
<provider selected="true" editor-type-id="text-editor">
|
|
1234
|
-
<state relative-caret-position="
|
|
1235
|
-
<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" />
|
|
1236
1367
|
</state>
|
|
1237
1368
|
</provider>
|
|
1238
1369
|
</entry>
|
|
1239
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1370
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts">
|
|
1240
1371
|
<provider selected="true" editor-type-id="text-editor">
|
|
1241
|
-
<state relative-caret-position="
|
|
1242
|
-
<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" />
|
|
1243
1374
|
</state>
|
|
1244
1375
|
</provider>
|
|
1245
1376
|
</entry>
|
|
1246
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1377
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/lists/index.ts">
|
|
1247
1378
|
<provider selected="true" editor-type-id="text-editor">
|
|
1248
|
-
<state relative-caret-position="
|
|
1249
|
-
<
|
|
1379
|
+
<state relative-caret-position="-1711">
|
|
1380
|
+
<folding>
|
|
1381
|
+
<element signature="e#0#47#0" expanded="true" />
|
|
1382
|
+
</folding>
|
|
1250
1383
|
</state>
|
|
1251
1384
|
</provider>
|
|
1252
1385
|
</entry>
|
|
1253
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1254
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
1386
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-inline-rule/lists.ts">
|
|
1387
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
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>
|
|
1393
|
+
</state>
|
|
1394
|
+
</provider>
|
|
1255
1395
|
</entry>
|
|
1256
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1396
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginLists.ts">
|
|
1257
1397
|
<provider selected="true" editor-type-id="text-editor">
|
|
1258
|
-
<state relative-caret-position="
|
|
1259
|
-
<caret line="
|
|
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>
|
|
1260
1403
|
</state>
|
|
1261
1404
|
</provider>
|
|
1262
1405
|
</entry>
|
|
1263
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1264
|
-
<provider selected="true" editor-type-id="
|
|
1265
|
-
<state
|
|
1266
|
-
<
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1406
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-lists.ts">
|
|
1407
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
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" />
|
|
1410
|
+
<folding>
|
|
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" />
|
|
1415
|
+
</folding>
|
|
1270
1416
|
</state>
|
|
1271
1417
|
</provider>
|
|
1272
1418
|
</entry>
|
|
1273
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1419
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts">
|
|
1274
1420
|
<provider selected="true" editor-type-id="text-editor">
|
|
1275
|
-
<state relative-caret-position="
|
|
1276
|
-
<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" />
|
|
1277
1423
|
<folding>
|
|
1278
|
-
<element signature="e#0#
|
|
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" />
|
|
1279
1428
|
</folding>
|
|
1280
1429
|
</state>
|
|
1281
1430
|
</provider>
|
|
1282
1431
|
</entry>
|
|
1283
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1432
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-table.ts">
|
|
1284
1433
|
<provider selected="true" editor-type-id="text-editor">
|
|
1285
|
-
<state relative-caret-position="
|
|
1286
|
-
<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" />
|
|
1287
1436
|
</state>
|
|
1288
1437
|
</provider>
|
|
1289
1438
|
</entry>
|
|
1290
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1291
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
1439
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginTableTabular.ts">
|
|
1440
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
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" />
|
|
1443
|
+
</state>
|
|
1444
|
+
</provider>
|
|
1292
1445
|
</entry>
|
|
1293
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1446
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/highlight/render-rule-highlights.ts">
|
|
1294
1447
|
<provider selected="true" editor-type-id="text-editor">
|
|
1295
|
-
<state relative-caret-position="
|
|
1296
|
-
<caret
|
|
1448
|
+
<state relative-caret-position="-1428">
|
|
1449
|
+
<caret column="81" selection-start-column="81" selection-end-column="81" />
|
|
1297
1450
|
</state>
|
|
1298
1451
|
</provider>
|
|
1299
1452
|
</entry>
|
|
1300
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1453
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts">
|
|
1301
1454
|
<provider selected="true" editor-type-id="text-editor">
|
|
1302
|
-
<state relative-caret-position="
|
|
1303
|
-
<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" />
|
|
1304
1457
|
<folding>
|
|
1305
|
-
<element signature="e#0#
|
|
1458
|
+
<element signature="e#0#40#0" expanded="true" />
|
|
1306
1459
|
</folding>
|
|
1307
1460
|
</state>
|
|
1308
1461
|
</provider>
|
|
1309
1462
|
</entry>
|
|
1310
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1463
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/index.ts">
|
|
1311
1464
|
<provider selected="true" editor-type-id="text-editor">
|
|
1312
|
-
<state relative-caret-position="
|
|
1313
|
-
<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" />
|
|
1467
|
+
<folding>
|
|
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" />
|
|
1480
|
+
</folding>
|
|
1314
1481
|
</state>
|
|
1315
1482
|
</provider>
|
|
1316
1483
|
</entry>
|
|
1317
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1484
|
+
<entry file="file://$PROJECT_DIR$/src/components/mathpix-markdown/index.tsx">
|
|
1318
1485
|
<provider selected="true" editor-type-id="text-editor">
|
|
1319
|
-
<state relative-caret-position="
|
|
1320
|
-
<caret line="
|
|
1486
|
+
<state relative-caret-position="420">
|
|
1487
|
+
<caret line="52" selection-start-line="52" selection-end-line="52" />
|
|
1321
1488
|
<folding>
|
|
1322
|
-
<element signature="e#
|
|
1489
|
+
<element signature="e#2398#2794#0" expanded="true" />
|
|
1323
1490
|
</folding>
|
|
1324
1491
|
</state>
|
|
1325
1492
|
</provider>
|
|
1326
1493
|
</entry>
|
|
1327
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1494
|
+
<entry file="file://$PROJECT_DIR$/src/styles/styles-code.ts">
|
|
1495
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
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" />
|
|
1498
|
+
</state>
|
|
1499
|
+
</provider>
|
|
1500
|
+
</entry>
|
|
1501
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
|
|
1328
1502
|
<provider selected="true" editor-type-id="text-editor">
|
|
1329
|
-
<state relative-caret-position="
|
|
1330
|
-
<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" />
|
|
1331
1505
|
<folding>
|
|
1332
|
-
<element signature="e#
|
|
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" />
|
|
1333
1510
|
</folding>
|
|
1334
1511
|
</state>
|
|
1335
1512
|
</provider>
|
|
1336
1513
|
</entry>
|
|
1337
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1514
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/index.ts">
|
|
1338
1515
|
<provider selected="true" editor-type-id="text-editor">
|
|
1339
|
-
<state relative-caret-position="
|
|
1340
|
-
<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" />
|
|
1341
1518
|
</state>
|
|
1342
1519
|
</provider>
|
|
1343
1520
|
</entry>
|
|
1344
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1521
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/utils.ts">
|
|
1345
1522
|
<provider selected="true" editor-type-id="text-editor">
|
|
1346
|
-
<state relative-caret-position="
|
|
1347
|
-
<caret line="
|
|
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" />
|
|
1348
1525
|
</state>
|
|
1349
1526
|
</provider>
|
|
1350
1527
|
</entry>
|
|
1351
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1528
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/highlight/common.ts">
|
|
1352
1529
|
<provider selected="true" editor-type-id="text-editor">
|
|
1353
|
-
<state relative-caret-position="
|
|
1354
|
-
<caret line="
|
|
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" />
|
|
1355
1532
|
</state>
|
|
1356
1533
|
</provider>
|
|
1357
1534
|
</entry>
|
|
1358
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1535
|
+
<entry file="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/base/BaseMappings.ts">
|
|
1359
1536
|
<provider selected="true" editor-type-id="text-editor">
|
|
1360
|
-
<state relative-caret-position="
|
|
1361
|
-
<caret line="
|
|
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" />
|
|
1362
1546
|
<folding>
|
|
1363
|
-
<element signature="e#0#
|
|
1547
|
+
<element signature="e#0#71#0" expanded="true" />
|
|
1364
1548
|
</folding>
|
|
1365
1549
|
</state>
|
|
1366
1550
|
</provider>
|
|
1367
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">
|
|
1563
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
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" />
|
|
1566
|
+
</state>
|
|
1567
|
+
</provider>
|
|
1568
|
+
</entry>
|
|
1368
1569
|
</component>
|
|
1369
1570
|
</project>
|