mathpix-markdown-it 1.0.86 → 1.0.88
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 +370 -378
- package/es5/bundle.js +1 -1
- package/es5/context-menu.js +1 -1
- package/es5/index.js +1 -1
- package/lib/contex-menu/index.js +2 -2
- package/lib/contex-menu/index.js.map +1 -1
- package/lib/contex-menu/menu/helper.d.ts +1 -1
- package/lib/contex-menu/menu/helper.js +4 -6
- package/lib/contex-menu/menu/helper.js.map +1 -1
- package/lib/helpers/normalize-link.d.ts +7 -0
- package/lib/helpers/normalize-link.js +31 -0
- package/lib/helpers/normalize-link.js.map +1 -0
- package/lib/index.d.ts +2 -1
- package/lib/index.js +3 -1
- package/lib/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/md-block-rule/begin-tabular/index.js +24 -25
- package/lib/markdown/md-block-rule/begin-tabular/index.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/multi-column-row.d.ts +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/multi-column-row.js +3 -2
- package/lib/markdown/md-block-rule/begin-tabular/multi-column-row.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js +2 -2
- package/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/sub-tabular.d.ts +2 -2
- package/lib/markdown/md-block-rule/begin-tabular/sub-tabular.js +45 -5
- package/lib/markdown/md-block-rule/begin-tabular/sub-tabular.js.map +1 -1
- package/lib/markdown/md-inline-rule/includegraphics.js +7 -0
- package/lib/markdown/md-inline-rule/includegraphics.js.map +1 -1
- package/lib/markdown/md-renderer-rules/render-tabular.js +33 -6
- package/lib/markdown/md-renderer-rules/render-tabular.js.map +1 -1
- package/lib/markdown/mdPluginRaw.js +1 -0
- package/lib/markdown/mdPluginRaw.js.map +1 -1
- package/lib/markdown/utils.d.ts +21 -0
- package/lib/markdown/utils.js +114 -1
- package/lib/markdown/utils.js.map +1 -1
- package/lib/mathjax/serialized-ascii/handlers.js +1 -1
- package/lib/mathjax/serialized-ascii/handlers.js.map +1 -1
- package/package.json +3 -1
package/.idea/workspace.xml
CHANGED
|
@@ -1,18 +1,53 @@
|
|
|
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/index.ts" line="
|
|
5
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" line="
|
|
6
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/
|
|
7
|
-
<bookmark url="file://$PROJECT_DIR$/node_modules/mathjax-full/ts/input/tex/ams/AmsMethods.ts" line="58" mnemonic="0" />
|
|
8
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts" line="141" mnemonic="1" />
|
|
9
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" line="297" mnemonic="2" />
|
|
4
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" line="23" mnemonic="5" />
|
|
5
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" line="221" mnemonic="6" />
|
|
6
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" line="982" mnemonic="0" />
|
|
10
7
|
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" line="235" mnemonic="3" />
|
|
11
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/
|
|
12
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/
|
|
8
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/utils.ts" line="18" mnemonic="9" />
|
|
9
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts" line="137" mnemonic="1" />
|
|
10
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts" line="25" mnemonic="2" />
|
|
13
11
|
</component>
|
|
14
12
|
<component name="ChangeListManager">
|
|
15
|
-
<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"
|
|
13
|
+
<list default="true" id="57194d73-380e-4999-b7f4-281db5a1b6dc" name="Default Changelist" comment="Merge branch 'master' into dev/olga/218-Add-support-for-labels-and-references-for-sections # 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">
|
|
14
|
+
<change beforePath="$PROJECT_DIR$/es5/bundle.js" beforeDir="false" afterPath="$PROJECT_DIR$/es5/bundle.js" afterDir="false" />
|
|
15
|
+
<change beforePath="$PROJECT_DIR$/es5/index.js" beforeDir="false" afterPath="$PROJECT_DIR$/es5/index.js" afterDir="false" />
|
|
16
|
+
<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" />
|
|
17
|
+
<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" />
|
|
18
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-block-rule/begin-tabular/index.js" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-block-rule/begin-tabular/index.js" afterDir="false" />
|
|
19
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-block-rule/begin-tabular/index.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-block-rule/begin-tabular/index.js.map" afterDir="false" />
|
|
20
|
+
<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" />
|
|
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.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" />
|
|
22
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-inline-rule/core-inline.js" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-inline-rule/core-inline.js" afterDir="false" />
|
|
23
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-inline-rule/core-inline.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-inline-rule/core-inline.js.map" afterDir="false" />
|
|
24
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-inline-rule/tabular.js" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-inline-rule/tabular.js" afterDir="false" />
|
|
25
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-inline-rule/tabular.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-inline-rule/tabular.js.map" afterDir="false" />
|
|
26
|
+
<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" />
|
|
27
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-renderer-rules/render-tabular.js" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-renderer-rules/render-tabular.js" afterDir="false" />
|
|
28
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-renderer-rules/render-tabular.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/lib/markdown/md-renderer-rules/render-tabular.js.map" afterDir="false" />
|
|
29
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/src/markdown/md-block-rule/begin-tabular/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/src/markdown/md-block-rule/begin-tabular/index.ts" afterDir="false" />
|
|
30
|
+
<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" />
|
|
31
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/src/markdown/md-inline-rule/core-inline.ts" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/src/markdown/md-inline-rule/core-inline.ts" afterDir="false" />
|
|
32
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/src/markdown/md-inline-rule/tabular.ts" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/src/markdown/md-inline-rule/tabular.ts" afterDir="false" />
|
|
33
|
+
<change beforePath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/src/markdown/md-renderer-rules/render-tabular.ts" beforeDir="false" afterPath="$PROJECT_DIR$/examples/react-app/use-toc/node_modules/mathpix-markdown-it/src/markdown/md-renderer-rules/render-tabular.ts" afterDir="false" />
|
|
34
|
+
<change beforePath="$PROJECT_DIR$/lib/markdown/md-block-rule/begin-tabular/index.js" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-block-rule/begin-tabular/index.js" afterDir="false" />
|
|
35
|
+
<change beforePath="$PROJECT_DIR$/lib/markdown/md-block-rule/begin-tabular/index.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-block-rule/begin-tabular/index.js.map" afterDir="false" />
|
|
36
|
+
<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" />
|
|
37
|
+
<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" />
|
|
38
|
+
<change beforePath="$PROJECT_DIR$/lib/markdown/md-inline-rule/core-inline.js" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-inline-rule/core-inline.js" afterDir="false" />
|
|
39
|
+
<change beforePath="$PROJECT_DIR$/lib/markdown/md-inline-rule/core-inline.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-inline-rule/core-inline.js.map" afterDir="false" />
|
|
40
|
+
<change beforePath="$PROJECT_DIR$/lib/markdown/md-inline-rule/tabular.js" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-inline-rule/tabular.js" afterDir="false" />
|
|
41
|
+
<change beforePath="$PROJECT_DIR$/lib/markdown/md-inline-rule/tabular.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-inline-rule/tabular.js.map" afterDir="false" />
|
|
42
|
+
<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" />
|
|
43
|
+
<change beforePath="$PROJECT_DIR$/lib/markdown/md-renderer-rules/render-tabular.js" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-renderer-rules/render-tabular.js" afterDir="false" />
|
|
44
|
+
<change beforePath="$PROJECT_DIR$/lib/markdown/md-renderer-rules/render-tabular.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/lib/markdown/md-renderer-rules/render-tabular.js.map" afterDir="false" />
|
|
45
|
+
<change beforePath="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" afterDir="false" />
|
|
46
|
+
<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" />
|
|
47
|
+
<change beforePath="$PROJECT_DIR$/src/markdown/md-inline-rule/core-inline.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/markdown/md-inline-rule/core-inline.ts" afterDir="false" />
|
|
48
|
+
<change beforePath="$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts" afterDir="false" />
|
|
49
|
+
<change beforePath="$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts" afterDir="false" />
|
|
50
|
+
</list>
|
|
16
51
|
<ignored path="$PROJECT_DIR$/es5/" />
|
|
17
52
|
<ignored path="$PROJECT_DIR$/.tmp/" />
|
|
18
53
|
<ignored path="$PROJECT_DIR$/temp/" />
|
|
@@ -27,8 +62,8 @@
|
|
|
27
62
|
<session id="1706553226">
|
|
28
63
|
<usages-collector id="statistics.lifecycle.project">
|
|
29
64
|
<counts>
|
|
30
|
-
<entry key="project.closed" value="
|
|
31
|
-
<entry key="project.open.time.10" value="
|
|
65
|
+
<entry key="project.closed" value="112" />
|
|
66
|
+
<entry key="project.open.time.10" value="6" />
|
|
32
67
|
<entry key="project.open.time.11" value="5" />
|
|
33
68
|
<entry key="project.open.time.12" value="4" />
|
|
34
69
|
<entry key="project.open.time.13" value="10" />
|
|
@@ -37,27 +72,27 @@
|
|
|
37
72
|
<entry key="project.open.time.17" value="1" />
|
|
38
73
|
<entry key="project.open.time.18" value="3" />
|
|
39
74
|
<entry key="project.open.time.19" value="1" />
|
|
40
|
-
<entry key="project.open.time.2" value="
|
|
75
|
+
<entry key="project.open.time.2" value="7" />
|
|
41
76
|
<entry key="project.open.time.20" value="2" />
|
|
42
77
|
<entry key="project.open.time.22" value="3" />
|
|
43
|
-
<entry key="project.open.time.3" value="
|
|
78
|
+
<entry key="project.open.time.3" value="23" />
|
|
44
79
|
<entry key="project.open.time.30" value="1" />
|
|
45
80
|
<entry key="project.open.time.31" value="1" />
|
|
46
81
|
<entry key="project.open.time.32" value="1" />
|
|
47
82
|
<entry key="project.open.time.34" value="1" />
|
|
48
|
-
<entry key="project.open.time.4" value="
|
|
83
|
+
<entry key="project.open.time.4" value="25" />
|
|
49
84
|
<entry key="project.open.time.48" value="1" />
|
|
50
85
|
<entry key="project.open.time.5" value="11" />
|
|
51
|
-
<entry key="project.open.time.6" value="
|
|
86
|
+
<entry key="project.open.time.6" value="8" />
|
|
52
87
|
<entry key="project.open.time.7" value="6" />
|
|
53
88
|
<entry key="project.open.time.8" value="1" />
|
|
54
89
|
<entry key="project.open.time.9" value="2" />
|
|
55
|
-
<entry key="project.opened" value="
|
|
90
|
+
<entry key="project.opened" value="129" />
|
|
56
91
|
</counts>
|
|
57
92
|
</usages-collector>
|
|
58
93
|
<usages-collector id="statistics.js.language.service.starts">
|
|
59
94
|
<counts>
|
|
60
|
-
<entry key="TypeScriptServerServiceImpl" value="
|
|
95
|
+
<entry key="TypeScriptServerServiceImpl" value="124" />
|
|
61
96
|
</counts>
|
|
62
97
|
</usages-collector>
|
|
63
98
|
<usages-collector id="statistics.file.extensions.open">
|
|
@@ -69,15 +104,15 @@
|
|
|
69
104
|
<entry key="gif" value="1" />
|
|
70
105
|
<entry key="gitignore" value="7" />
|
|
71
106
|
<entry key="html" value="10" />
|
|
72
|
-
<entry key="js" value="
|
|
73
|
-
<entry key="json" value="
|
|
107
|
+
<entry key="js" value="311" />
|
|
108
|
+
<entry key="json" value="49" />
|
|
74
109
|
<entry key="jsx" value="18" />
|
|
75
|
-
<entry key="lock" value="
|
|
110
|
+
<entry key="lock" value="10" />
|
|
76
111
|
<entry key="md" value="39" />
|
|
77
|
-
<entry key="png" value="
|
|
112
|
+
<entry key="png" value="2" />
|
|
78
113
|
<entry key="sre" value="1" />
|
|
79
|
-
<entry key="ts" value="
|
|
80
|
-
<entry key="tsx" value="
|
|
114
|
+
<entry key="ts" value="836" />
|
|
115
|
+
<entry key="tsx" value="35" />
|
|
81
116
|
</counts>
|
|
82
117
|
</usages-collector>
|
|
83
118
|
<usages-collector id="statistics.file.types.open">
|
|
@@ -86,40 +121,40 @@
|
|
|
86
121
|
<entry key="CSS" value="3" />
|
|
87
122
|
<entry key="EJS" value="1" />
|
|
88
123
|
<entry key="HTML" value="10" />
|
|
89
|
-
<entry key="Image" value="
|
|
90
|
-
<entry key="JSON" value="
|
|
124
|
+
<entry key="Image" value="3" />
|
|
125
|
+
<entry key="JSON" value="47" />
|
|
91
126
|
<entry key="JSX Harmony" value="18" />
|
|
92
|
-
<entry key="JavaScript" value="
|
|
127
|
+
<entry key="JavaScript" value="312" />
|
|
93
128
|
<entry key="Markdown" value="39" />
|
|
94
129
|
<entry key="PLAIN_TEXT" value="8" />
|
|
95
|
-
<entry key="TypeScript" value="
|
|
96
|
-
<entry key="TypeScript JSX" value="
|
|
130
|
+
<entry key="TypeScript" value="836" />
|
|
131
|
+
<entry key="TypeScript JSX" value="35" />
|
|
97
132
|
<entry key="tsconfig" value="3" />
|
|
98
|
-
<entry key="yarn.lock" value="
|
|
133
|
+
<entry key="yarn.lock" value="9" />
|
|
99
134
|
</counts>
|
|
100
135
|
</usages-collector>
|
|
101
136
|
<usages-collector id="statistics.file.extensions.edit">
|
|
102
137
|
<counts>
|
|
103
138
|
<entry key="css" value="98" />
|
|
104
139
|
<entry key="html" value="27" />
|
|
105
|
-
<entry key="js" value="
|
|
106
|
-
<entry key="json" value="
|
|
140
|
+
<entry key="js" value="8500" />
|
|
141
|
+
<entry key="json" value="61" />
|
|
107
142
|
<entry key="jsx" value="1188" />
|
|
108
143
|
<entry key="md" value="2192" />
|
|
109
|
-
<entry key="ts" value="
|
|
110
|
-
<entry key="tsx" value="
|
|
144
|
+
<entry key="ts" value="70777" />
|
|
145
|
+
<entry key="tsx" value="527" />
|
|
111
146
|
</counts>
|
|
112
147
|
</usages-collector>
|
|
113
148
|
<usages-collector id="statistics.file.types.edit">
|
|
114
149
|
<counts>
|
|
115
150
|
<entry key="CSS" value="98" />
|
|
116
151
|
<entry key="HTML" value="102" />
|
|
117
|
-
<entry key="JSON" value="
|
|
152
|
+
<entry key="JSON" value="35" />
|
|
118
153
|
<entry key="JSX Harmony" value="1188" />
|
|
119
|
-
<entry key="JavaScript" value="
|
|
154
|
+
<entry key="JavaScript" value="8513" />
|
|
120
155
|
<entry key="Markdown" value="2112" />
|
|
121
|
-
<entry key="TypeScript" value="
|
|
122
|
-
<entry key="TypeScript JSX" value="
|
|
156
|
+
<entry key="TypeScript" value="70769" />
|
|
157
|
+
<entry key="TypeScript JSX" value="527" />
|
|
123
158
|
<entry key="tsconfig" value="26" />
|
|
124
159
|
</counts>
|
|
125
160
|
</usages-collector>
|
|
@@ -129,39 +164,26 @@
|
|
|
129
164
|
<favorites_list name="mathpix-markdown-it" />
|
|
130
165
|
</component>
|
|
131
166
|
<component name="FileEditorManager">
|
|
132
|
-
<splitter split-orientation="horizontal" split-proportion="0.
|
|
167
|
+
<splitter split-orientation="horizontal" split-proportion="0.53818184">
|
|
133
168
|
<split-first>
|
|
134
169
|
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
135
|
-
<file pinned="false" current-in-tab="
|
|
136
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
170
|
+
<file pinned="false" current-in-tab="true">
|
|
171
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts">
|
|
137
172
|
<provider selected="true" editor-type-id="text-editor">
|
|
138
|
-
<state relative-caret-position="
|
|
139
|
-
<caret line="
|
|
173
|
+
<state relative-caret-position="118">
|
|
174
|
+
<caret line="174" column="8" lean-forward="true" selection-start-line="174" selection-start-column="8" selection-end-line="174" selection-end-column="8" />
|
|
140
175
|
<folding>
|
|
141
|
-
<element signature="e#0#
|
|
176
|
+
<element signature="e#0#47#0" expanded="true" />
|
|
142
177
|
</folding>
|
|
143
178
|
</state>
|
|
144
179
|
</provider>
|
|
145
180
|
</entry>
|
|
146
181
|
</file>
|
|
147
182
|
<file pinned="false" current-in-tab="false">
|
|
148
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
149
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
150
|
-
</entry>
|
|
151
|
-
</file>
|
|
152
|
-
<file pinned="false" current-in-tab="true">
|
|
153
|
-
<entry file="file://$PROJECT_DIR$/src/mathjax/my-BaseMappings.ts">
|
|
154
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
155
|
-
</entry>
|
|
156
|
-
</file>
|
|
157
|
-
<file pinned="false" current-in-tab="false">
|
|
158
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts">
|
|
183
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-code.ts">
|
|
159
184
|
<provider selected="true" editor-type-id="text-editor">
|
|
160
|
-
<state relative-caret-position="
|
|
161
|
-
<caret line="
|
|
162
|
-
<folding>
|
|
163
|
-
<element signature="e#0#38#0" expanded="true" />
|
|
164
|
-
</folding>
|
|
185
|
+
<state relative-caret-position="105">
|
|
186
|
+
<caret line="7" column="35" selection-start-line="7" selection-start-column="35" selection-end-line="7" selection-end-column="35" />
|
|
165
187
|
</state>
|
|
166
188
|
</provider>
|
|
167
189
|
</entry>
|
|
@@ -169,102 +191,111 @@
|
|
|
169
191
|
<file pinned="false" current-in-tab="false">
|
|
170
192
|
<entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts">
|
|
171
193
|
<provider selected="true" editor-type-id="text-editor">
|
|
172
|
-
<state relative-caret-position="
|
|
173
|
-
<caret line="
|
|
194
|
+
<state relative-caret-position="2160">
|
|
195
|
+
<caret line="145" column="32" selection-start-line="145" selection-start-column="32" selection-end-line="145" selection-end-column="32" />
|
|
174
196
|
</state>
|
|
175
197
|
</provider>
|
|
176
198
|
</entry>
|
|
177
199
|
</file>
|
|
178
200
|
<file pinned="false" current-in-tab="false">
|
|
179
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
201
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts">
|
|
180
202
|
<provider selected="true" editor-type-id="text-editor">
|
|
181
|
-
<state relative-caret-position="
|
|
182
|
-
<caret line="
|
|
203
|
+
<state relative-caret-position="105">
|
|
204
|
+
<caret line="8" column="25" selection-start-line="8" selection-start-column="25" selection-end-line="8" selection-end-column="25" />
|
|
183
205
|
</state>
|
|
184
206
|
</provider>
|
|
185
207
|
</entry>
|
|
186
208
|
</file>
|
|
187
209
|
<file pinned="false" current-in-tab="false">
|
|
188
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
210
|
+
<entry file="file://$PROJECT_DIR$/src/index.tsx">
|
|
189
211
|
<provider selected="true" editor-type-id="text-editor">
|
|
190
|
-
<state relative-caret-position="
|
|
191
|
-
<caret line="
|
|
212
|
+
<state relative-caret-position="735">
|
|
213
|
+
<caret line="49" column="82" selection-start-line="49" selection-start-column="82" selection-end-line="49" selection-end-column="82" />
|
|
214
|
+
<folding>
|
|
215
|
+
<element signature="e#0#56#0" expanded="true" />
|
|
216
|
+
</folding>
|
|
192
217
|
</state>
|
|
193
218
|
</provider>
|
|
194
219
|
</entry>
|
|
195
220
|
</file>
|
|
196
221
|
<file pinned="false" current-in-tab="false">
|
|
197
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-
|
|
222
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-math.ts">
|
|
198
223
|
<provider selected="true" editor-type-id="text-editor">
|
|
199
|
-
<state relative-caret-position="
|
|
200
|
-
<caret line="
|
|
224
|
+
<state relative-caret-position="135">
|
|
225
|
+
<caret line="9" selection-start-line="9" selection-end-line="9" />
|
|
226
|
+
<folding>
|
|
227
|
+
<element signature="e#0#38#0" expanded="true" />
|
|
228
|
+
</folding>
|
|
201
229
|
</state>
|
|
202
230
|
</provider>
|
|
203
231
|
</entry>
|
|
204
232
|
</file>
|
|
205
233
|
<file pinned="false" current-in-tab="false">
|
|
206
|
-
<entry file="file://$PROJECT_DIR$/
|
|
234
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_tsv/_data.js">
|
|
207
235
|
<provider selected="true" editor-type-id="text-editor">
|
|
208
|
-
<state relative-caret-position="
|
|
209
|
-
<caret line="
|
|
236
|
+
<state relative-caret-position="23865">
|
|
237
|
+
<caret line="1591" column="3" selection-start-line="1591" selection-start-column="3" selection-end-line="1591" selection-end-column="3" />
|
|
210
238
|
</state>
|
|
211
239
|
</provider>
|
|
212
240
|
</entry>
|
|
213
241
|
</file>
|
|
214
242
|
<file pinned="false" current-in-tab="false">
|
|
215
|
-
<entry file="file://$PROJECT_DIR$/
|
|
243
|
+
<entry file="file://$PROJECT_DIR$/tests/_tsv.js">
|
|
216
244
|
<provider selected="true" editor-type-id="text-editor">
|
|
217
|
-
<state relative-caret-position="
|
|
218
|
-
<caret line="
|
|
245
|
+
<state relative-caret-position="510">
|
|
246
|
+
<caret line="34" column="55" selection-start-line="34" selection-start-column="55" selection-end-line="34" selection-end-column="55" />
|
|
219
247
|
</state>
|
|
220
248
|
</provider>
|
|
221
249
|
</entry>
|
|
222
250
|
</file>
|
|
223
|
-
</leaf>
|
|
224
|
-
</split-first>
|
|
225
|
-
<split-second>
|
|
226
|
-
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
227
251
|
<file pinned="false" current-in-tab="false">
|
|
228
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
252
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts">
|
|
229
253
|
<provider selected="true" editor-type-id="text-editor">
|
|
230
|
-
<state relative-caret-position="
|
|
231
|
-
<caret line="
|
|
254
|
+
<state relative-caret-position="15435">
|
|
255
|
+
<caret line="1029" column="25" selection-start-line="1029" selection-start-column="25" selection-end-line="1029" selection-end-column="25" />
|
|
256
|
+
<folding>
|
|
257
|
+
<element signature="e#0#38#0" expanded="true" />
|
|
258
|
+
</folding>
|
|
232
259
|
</state>
|
|
233
260
|
</provider>
|
|
234
261
|
</entry>
|
|
235
262
|
</file>
|
|
236
|
-
<file pinned="false" current-in-tab="
|
|
237
|
-
<entry file="file://$PROJECT_DIR$/
|
|
263
|
+
<file pinned="false" current-in-tab="false">
|
|
264
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-inline-rule/core-inline.ts">
|
|
238
265
|
<provider selected="true" editor-type-id="text-editor">
|
|
239
|
-
<state relative-caret-position="
|
|
240
|
-
<caret line="
|
|
266
|
+
<state relative-caret-position="195">
|
|
267
|
+
<caret line="13" column="51" selection-start-line="13" selection-start-column="51" selection-end-line="13" selection-end-column="51" />
|
|
241
268
|
</state>
|
|
242
269
|
</provider>
|
|
243
270
|
</entry>
|
|
244
271
|
</file>
|
|
272
|
+
</leaf>
|
|
273
|
+
</split-first>
|
|
274
|
+
<split-second>
|
|
275
|
+
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
245
276
|
<file pinned="false" current-in-tab="false">
|
|
246
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-
|
|
277
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-tabular.ts">
|
|
247
278
|
<provider selected="true" editor-type-id="text-editor">
|
|
248
|
-
<state relative-caret-position="
|
|
249
|
-
<caret line="
|
|
279
|
+
<state relative-caret-position="570">
|
|
280
|
+
<caret line="39" column="26" selection-start-line="39" selection-start-column="13" selection-end-line="39" selection-end-column="26" />
|
|
250
281
|
</state>
|
|
251
282
|
</provider>
|
|
252
283
|
</entry>
|
|
253
284
|
</file>
|
|
254
|
-
<file pinned="false" current-in-tab="
|
|
255
|
-
<entry file="file://$PROJECT_DIR$/
|
|
285
|
+
<file pinned="false" current-in-tab="true">
|
|
286
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts">
|
|
256
287
|
<provider selected="true" editor-type-id="text-editor">
|
|
257
|
-
<state relative-caret-position="
|
|
258
|
-
<caret line="
|
|
288
|
+
<state relative-caret-position="244">
|
|
289
|
+
<caret line="246" column="21" selection-start-line="246" selection-start-column="21" selection-end-line="246" selection-end-column="38" />
|
|
259
290
|
</state>
|
|
260
291
|
</provider>
|
|
261
292
|
</entry>
|
|
262
293
|
</file>
|
|
263
294
|
<file pinned="false" current-in-tab="false">
|
|
264
|
-
<entry file="file://$PROJECT_DIR
|
|
295
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts">
|
|
265
296
|
<provider selected="true" editor-type-id="text-editor">
|
|
266
|
-
<state relative-caret-position="
|
|
267
|
-
<caret line="
|
|
297
|
+
<state relative-caret-position="1215">
|
|
298
|
+
<caret line="82" column="13" selection-start-line="82" selection-start-column="13" selection-end-line="82" selection-end-column="13" />
|
|
268
299
|
</state>
|
|
269
300
|
</provider>
|
|
270
301
|
</entry>
|
|
@@ -272,8 +303,8 @@
|
|
|
272
303
|
<file pinned="false" current-in-tab="false">
|
|
273
304
|
<entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts">
|
|
274
305
|
<provider selected="true" editor-type-id="text-editor">
|
|
275
|
-
<state relative-caret-position="
|
|
276
|
-
<caret line="
|
|
306
|
+
<state relative-caret-position="2730">
|
|
307
|
+
<caret line="182" column="3" selection-start-line="182" selection-start-column="3" selection-end-line="182" selection-end-column="3" />
|
|
277
308
|
<folding>
|
|
278
309
|
<element signature="e#0#40#0" expanded="true" />
|
|
279
310
|
</folding>
|
|
@@ -282,39 +313,39 @@
|
|
|
282
313
|
</entry>
|
|
283
314
|
</file>
|
|
284
315
|
<file pinned="false" current-in-tab="false">
|
|
285
|
-
<entry file="file://$PROJECT_DIR$/
|
|
316
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/inline-rule.ts">
|
|
286
317
|
<provider selected="true" editor-type-id="text-editor">
|
|
287
|
-
<state relative-caret-position="
|
|
288
|
-
<caret line="
|
|
318
|
+
<state relative-caret-position="915">
|
|
319
|
+
<caret line="76" column="23" selection-start-line="76" selection-start-column="23" selection-end-line="76" selection-end-column="23" />
|
|
289
320
|
</state>
|
|
290
321
|
</provider>
|
|
291
322
|
</entry>
|
|
292
323
|
</file>
|
|
293
324
|
<file pinned="false" current-in-tab="false">
|
|
294
|
-
<entry file="file://$PROJECT_DIR$/
|
|
325
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/common/consts.ts">
|
|
295
326
|
<provider selected="true" editor-type-id="text-editor">
|
|
296
|
-
<state relative-caret-position="
|
|
297
|
-
<caret line="
|
|
327
|
+
<state relative-caret-position="750">
|
|
328
|
+
<caret line="50" column="7" selection-start-line="50" selection-start-column="7" selection-end-line="50" selection-end-column="7" />
|
|
298
329
|
</state>
|
|
299
330
|
</provider>
|
|
300
331
|
</entry>
|
|
301
332
|
</file>
|
|
302
333
|
<file pinned="false" current-in-tab="false">
|
|
303
|
-
<entry file="file://$PROJECT_DIR$/
|
|
334
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/multi-column-row.ts">
|
|
304
335
|
<provider selected="true" editor-type-id="text-editor">
|
|
305
|
-
<state relative-caret-position="
|
|
306
|
-
<caret line="
|
|
336
|
+
<state relative-caret-position="1560">
|
|
337
|
+
<caret line="109" column="49" selection-start-line="109" selection-start-column="49" selection-end-line="109" selection-end-column="49" />
|
|
307
338
|
</state>
|
|
308
339
|
</provider>
|
|
309
340
|
</entry>
|
|
310
341
|
</file>
|
|
311
342
|
<file pinned="false" current-in-tab="false">
|
|
312
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
343
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/utils.ts">
|
|
313
344
|
<provider selected="true" editor-type-id="text-editor">
|
|
314
|
-
<state relative-caret-position="
|
|
315
|
-
<caret line="
|
|
345
|
+
<state relative-caret-position="270">
|
|
346
|
+
<caret line="18" selection-start-line="18" selection-end-line="18" />
|
|
316
347
|
<folding>
|
|
317
|
-
<element signature="e#
|
|
348
|
+
<element signature="e#6788#7766#0" />
|
|
318
349
|
</folding>
|
|
319
350
|
</state>
|
|
320
351
|
</provider>
|
|
@@ -333,36 +364,36 @@
|
|
|
333
364
|
</component>
|
|
334
365
|
<component name="FindInProjectRecents">
|
|
335
366
|
<findStrings>
|
|
336
|
-
<find>
|
|
337
|
-
<find>
|
|
338
|
-
<find>
|
|
339
|
-
<find>
|
|
340
|
-
<find>begin.getName()</find>
|
|
341
|
-
<find>getMathEnvironment</find>
|
|
342
|
-
<find>math_env</find>
|
|
343
|
-
<find>envName</find>
|
|
344
|
-
<find>alig</find>
|
|
345
|
-
<find>console</find>
|
|
367
|
+
<find>setTokensTabular</find>
|
|
368
|
+
<find>renderInlineTokenBlock</find>
|
|
369
|
+
<find>parents</find>
|
|
370
|
+
<find>tableToTsv</find>
|
|
346
371
|
<find>console.log</find>
|
|
347
|
-
<find
|
|
348
|
-
<find>
|
|
372
|
+
<find>options</find>
|
|
373
|
+
<find>getMultiColumnMultiRow</find>
|
|
374
|
+
<find>forLatex</find>
|
|
375
|
+
<find>0x60</find>
|
|
376
|
+
<find>includesMultiMathBeginTag</find>
|
|
377
|
+
<find>pending</find>
|
|
378
|
+
<find>findOpenCloseTags</find>
|
|
379
|
+
<find>pendingBacktick</find>
|
|
380
|
+
<find>debugger</find>
|
|
381
|
+
<find>BeginTabular</find>
|
|
382
|
+
<find>terminator</find>
|
|
383
|
+
<find>tagOpen</find>
|
|
384
|
+
<find>isSubTable</find>
|
|
349
385
|
<find>ParseTabular</find>
|
|
350
|
-
<find>inlineTabular</find>
|
|
351
386
|
<find>tabular_inline</find>
|
|
352
|
-
<find>
|
|
353
|
-
<find>
|
|
354
|
-
<find>
|
|
355
|
-
<find>
|
|
356
|
-
<find>
|
|
357
|
-
<find>
|
|
358
|
-
<find>arrRow</find>
|
|
359
|
-
<find>tsv</find>
|
|
360
|
-
<find>debugger</find>
|
|
361
|
-
<find>arrRowSub</find>
|
|
362
|
-
<find>setTokensTabular</find>
|
|
387
|
+
<find>inlineTabular</find>
|
|
388
|
+
<find>state.md.inline</find>
|
|
389
|
+
<find>StatePushTabularBlock</find>
|
|
390
|
+
<find>tabular</find>
|
|
391
|
+
<find>subTabular</find>
|
|
392
|
+
<find>convertMathToHtml</find>
|
|
363
393
|
<find>getSubTabular</find>
|
|
364
|
-
<find>
|
|
365
|
-
<find>
|
|
394
|
+
<find>children</find>
|
|
395
|
+
<find>parseInlineTabular</find>
|
|
396
|
+
<find>StatePushTabulars</find>
|
|
366
397
|
</findStrings>
|
|
367
398
|
<replaceStrings>
|
|
368
399
|
<replace>MJSimple</replace>
|
|
@@ -373,7 +404,6 @@
|
|
|
373
404
|
<replace>operation</replace>
|
|
374
405
|
</replaceStrings>
|
|
375
406
|
<dirStrings>
|
|
376
|
-
<dir>$PROJECT_DIR$/tests/_data</dir>
|
|
377
407
|
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/input</dir>
|
|
378
408
|
<dir>$PROJECT_DIR$/node_modules/markdown-it-emoji</dir>
|
|
379
409
|
<dir>$PROJECT_DIR$/node_modules/markdown-it-footnote</dir>
|
|
@@ -383,10 +413,8 @@
|
|
|
383
413
|
<dir>$PROJECT_DIR$/node_modules/markdown-it-sub</dir>
|
|
384
414
|
<dir>$PROJECT_DIR$/node_modules/markdown-it-sup</dir>
|
|
385
415
|
<dir>$PROJECT_DIR$/node_modules/markdown-it-deflist</dir>
|
|
386
|
-
<dir>$PROJECT_DIR$/src/contex-menu/menu</dir>
|
|
387
416
|
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/core/Tree</dir>
|
|
388
417
|
<dir>$PROJECT_DIR$/src/mathpix-markdown-model</dir>
|
|
389
|
-
<dir>$PROJECT_DIR$/src/contex-menu</dir>
|
|
390
418
|
<dir>$PROJECT_DIR$/tests/_data/_wolfram</dir>
|
|
391
419
|
<dir>$PROJECT_DIR$/src/mathjax/serialized-wolfram</dir>
|
|
392
420
|
<dir>$PROJECT_DIR$/tests</dir>
|
|
@@ -396,11 +424,14 @@
|
|
|
396
424
|
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/core/MmlTree</dir>
|
|
397
425
|
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts/core</dir>
|
|
398
426
|
<dir>$PROJECT_DIR$/tests/_data/_ascii</dir>
|
|
399
|
-
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
|
|
400
427
|
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts</dir>
|
|
401
|
-
<dir>$PROJECT_DIR$/src/mathjax</dir>
|
|
402
428
|
<dir>$PROJECT_DIR$/src/mathjax/serialized-ascii</dir>
|
|
403
429
|
<dir>$PROJECT_DIR$/src/markdown/md-block-rule</dir>
|
|
430
|
+
<dir>$PROJECT_DIR$/src/contex-menu/menu</dir>
|
|
431
|
+
<dir>$PROJECT_DIR$/src/contex-menu</dir>
|
|
432
|
+
<dir>$PROJECT_DIR$/src/mathjax/helpers</dir>
|
|
433
|
+
<dir>$PROJECT_DIR$/src/mathjax</dir>
|
|
434
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
|
|
404
435
|
<dir>$PROJECT_DIR$/src/markdown</dir>
|
|
405
436
|
<dir>$PROJECT_DIR$/src</dir>
|
|
406
437
|
</dirStrings>
|
|
@@ -411,17 +442,6 @@
|
|
|
411
442
|
<component name="IdeDocumentHistory">
|
|
412
443
|
<option name="CHANGED_PATHS">
|
|
413
444
|
<list>
|
|
414
|
-
<option value="$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/newcommand/NewcommandMethods.js" />
|
|
415
|
-
<option value="$PROJECT_DIR$/node_modules/mathjax-full/js/input/tex/newcommand/NewcommandUtil.js" />
|
|
416
|
-
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/FlatItems.ts" />
|
|
417
|
-
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/FlatConfiguration.ts" />
|
|
418
|
-
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/FlatMappings.ts" />
|
|
419
|
-
<option value="$PROJECT_DIR$/src/mathjax/helpers/flat/FlatMethods.ts" />
|
|
420
|
-
<option value="$PROJECT_DIR$/src/mathjax/helpers/array/FlatConfiguration.ts" />
|
|
421
|
-
<option value="$PROJECT_DIR$/tsconfig.json" />
|
|
422
|
-
<option value="$PROJECT_DIR$/src/mathjax/mathJaxConfig.ts" />
|
|
423
|
-
<option value="$PROJECT_DIR$/tests/_tsv.js" />
|
|
424
|
-
<option value="$PROJECT_DIR$/src/mathjax/helpers/array/ArrayConfiguration.ts" />
|
|
425
445
|
<option value="$PROJECT_DIR$/src/mathjax/mathjax.ts" />
|
|
426
446
|
<option value="$PROJECT_DIR$/tests/_data/_ascii/_ascii_lcm.js" />
|
|
427
447
|
<option value="$PROJECT_DIR$/tests/_data/_ascii/ascii_vertical_math.js" />
|
|
@@ -431,14 +451,9 @@
|
|
|
431
451
|
<option value="$PROJECT_DIR$/tests/_data/_ascii/_ascii_vertical_math.js" />
|
|
432
452
|
<option value="$PROJECT_DIR$/tests/_ascii.js" />
|
|
433
453
|
<option value="$PROJECT_DIR$/README.md" />
|
|
434
|
-
<option value="$PROJECT_DIR$/src/markdown/common/consts.ts" />
|
|
435
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/multi-column-row.ts" />
|
|
436
454
|
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts" />
|
|
437
|
-
<option value="$PROJECT_DIR$/tests/_data/_tabular/_data.js" />
|
|
438
455
|
<option value="$PROJECT_DIR$/src/mathjax/index.ts" />
|
|
439
456
|
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-table.ts" />
|
|
440
|
-
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/includegraphics.ts" />
|
|
441
|
-
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/core-inline.ts" />
|
|
442
457
|
<option value="$PROJECT_DIR$/src/markdown/mdPluginLists.ts" />
|
|
443
458
|
<option value="$PROJECT_DIR$/src/markdown/mdPluginConfigured.ts" />
|
|
444
459
|
<option value="$PROJECT_DIR$/src/markdown/index.ts" />
|
|
@@ -452,16 +467,32 @@
|
|
|
452
467
|
<option value="$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_gathered_aligned.js" />
|
|
453
468
|
<option value="$PROJECT_DIR$/tests/_tsv_with_array.js" />
|
|
454
469
|
<option value="$PROJECT_DIR$/src/helpers/consts.ts" />
|
|
455
|
-
<option value="$PROJECT_DIR$/src/
|
|
456
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" />
|
|
457
|
-
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts" />
|
|
458
|
-
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" />
|
|
459
|
-
<option value="$PROJECT_DIR$/src/markdown/mdPluginTableTabular.ts" />
|
|
460
|
-
<option value="$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" />
|
|
470
|
+
<option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/render-lists.ts" />
|
|
461
471
|
<option value="$PROJECT_DIR$/src/markdown/mdPluginText.ts" />
|
|
472
|
+
<option value="$PROJECT_DIR$/tests/_data/_tsv/_dataFormats.js" />
|
|
473
|
+
<option value="$PROJECT_DIR$/package-lock.json" />
|
|
474
|
+
<option value="$PROJECT_DIR$/src/helpers/normalize-link.ts" />
|
|
475
|
+
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/includegraphics.ts" />
|
|
476
|
+
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/image.ts" />
|
|
477
|
+
<option value="$PROJECT_DIR$/src/contex-menu/menu/helper.ts" />
|
|
478
|
+
<option value="$PROJECT_DIR$/tests/_tsv.js" />
|
|
479
|
+
<option value="$PROJECT_DIR$/tests/_data/_tsv/_data.js" />
|
|
480
|
+
<option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts" />
|
|
481
|
+
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-math.ts" />
|
|
482
|
+
<option value="$PROJECT_DIR$/package.json" />
|
|
483
|
+
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/multi-column-row.ts" />
|
|
484
|
+
<option value="$PROJECT_DIR$/src/markdown/common/consts.ts" />
|
|
462
485
|
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-tabular.ts" />
|
|
486
|
+
<option value="$PROJECT_DIR$/tests/_data/_tabular/_data.js" />
|
|
487
|
+
<option value="$PROJECT_DIR$/src/markdown/mdPluginTableTabular.ts" />
|
|
488
|
+
<option value="$PROJECT_DIR$/src/markdown/utils.ts" />
|
|
489
|
+
<option value="$PROJECT_DIR$/src/index.tsx" />
|
|
463
490
|
<option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts" />
|
|
464
|
-
<option value="$PROJECT_DIR$/
|
|
491
|
+
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts" />
|
|
492
|
+
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/core-inline.ts" />
|
|
493
|
+
<option value="$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" />
|
|
494
|
+
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" />
|
|
495
|
+
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" />
|
|
465
496
|
</list>
|
|
466
497
|
</option>
|
|
467
498
|
</component>
|
|
@@ -492,9 +523,9 @@
|
|
|
492
523
|
</packageJsonPaths>
|
|
493
524
|
</component>
|
|
494
525
|
<component name="ProjectFrameBounds">
|
|
495
|
-
<option name="y" value="
|
|
496
|
-
<option name="width" value="
|
|
497
|
-
<option name="height" value="
|
|
526
|
+
<option name="y" value="25" />
|
|
527
|
+
<option name="width" value="1649" />
|
|
528
|
+
<option name="height" value="976" />
|
|
498
529
|
</component>
|
|
499
530
|
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
|
500
531
|
<component name="ProjectView">
|
|
@@ -519,60 +550,47 @@
|
|
|
519
550
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
520
551
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
521
552
|
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
522
|
-
<item name="
|
|
553
|
+
<item name="contex-menu" type="462c0819:PsiDirectoryNode" />
|
|
523
554
|
</path>
|
|
524
555
|
<path>
|
|
525
556
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
526
557
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
527
558
|
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
528
|
-
<item name="
|
|
559
|
+
<item name="contex-menu" type="462c0819:PsiDirectoryNode" />
|
|
560
|
+
<item name="menu" type="462c0819:PsiDirectoryNode" />
|
|
529
561
|
</path>
|
|
530
562
|
<path>
|
|
531
563
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
532
564
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
533
565
|
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
534
|
-
<item name="
|
|
535
|
-
<item name="helpers" type="462c0819:PsiDirectoryNode" />
|
|
566
|
+
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
536
567
|
</path>
|
|
537
568
|
<path>
|
|
538
569
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
539
570
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
540
571
|
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
541
|
-
<item name="
|
|
542
|
-
<item name="
|
|
543
|
-
<item name="array" type="462c0819:PsiDirectoryNode" />
|
|
572
|
+
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
573
|
+
<item name="md-inline-rule" type="462c0819:PsiDirectoryNode" />
|
|
544
574
|
</path>
|
|
545
575
|
<path>
|
|
546
576
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
547
577
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
548
578
|
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
549
|
-
<item name="
|
|
550
|
-
<item name="
|
|
579
|
+
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
580
|
+
<item name="md-renderer-rules" type="462c0819:PsiDirectoryNode" />
|
|
551
581
|
</path>
|
|
552
582
|
<path>
|
|
553
583
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
554
584
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
555
|
-
<item name="
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
559
|
-
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
560
|
-
<item name="tests" type="462c0819:PsiDirectoryNode" />
|
|
561
|
-
<item name="_data" type="462c0819:PsiDirectoryNode" />
|
|
562
|
-
</path>
|
|
563
|
-
<path>
|
|
564
|
-
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
565
|
-
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
566
|
-
<item name="tests" type="462c0819:PsiDirectoryNode" />
|
|
567
|
-
<item name="_data" type="462c0819:PsiDirectoryNode" />
|
|
568
|
-
<item name="_tabular" type="462c0819:PsiDirectoryNode" />
|
|
585
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
586
|
+
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
587
|
+
<item name="md-theorem" type="462c0819:PsiDirectoryNode" />
|
|
569
588
|
</path>
|
|
570
589
|
<path>
|
|
571
590
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
572
591
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
573
|
-
<item name="
|
|
574
|
-
<item name="
|
|
575
|
-
<item name="_tsv_with_array" type="462c0819:PsiDirectoryNode" />
|
|
592
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
593
|
+
<item name="mathjax" type="462c0819:PsiDirectoryNode" />
|
|
576
594
|
</path>
|
|
577
595
|
</expand>
|
|
578
596
|
<select />
|
|
@@ -758,16 +776,26 @@
|
|
|
758
776
|
<workItem from="1676988174471" duration="11007000" />
|
|
759
777
|
<workItem from="1677127829619" duration="18027000" />
|
|
760
778
|
<workItem from="1677160633294" duration="1191000" />
|
|
779
|
+
<workItem from="1677174299934" duration="1409000" />
|
|
780
|
+
<workItem from="1677222753394" duration="25220000" />
|
|
781
|
+
<workItem from="1677567286421" duration="15213000" />
|
|
782
|
+
<workItem from="1677652203915" duration="15269000" />
|
|
783
|
+
<workItem from="1677741257639" duration="18514000" />
|
|
784
|
+
<workItem from="1677782683088" duration="54000" />
|
|
785
|
+
<workItem from="1677829116668" duration="4446000" />
|
|
786
|
+
<workItem from="1677837009191" duration="5598000" />
|
|
787
|
+
<workItem from="1677844732885" duration="1411000" />
|
|
761
788
|
</task>
|
|
762
789
|
<servers />
|
|
763
790
|
</component>
|
|
764
791
|
<component name="TimeTrackingManager">
|
|
765
|
-
<option name="totallyTimeSpent" value="
|
|
792
|
+
<option name="totallyTimeSpent" value="1573864000" />
|
|
766
793
|
</component>
|
|
767
794
|
<component name="ToolWindowManager">
|
|
768
|
-
<frame x="0" y="
|
|
795
|
+
<frame x="0" y="25" width="1649" height="976" extended-state="0" />
|
|
796
|
+
<editor active="true" />
|
|
769
797
|
<layout>
|
|
770
|
-
<window_info content_ui="combo" id="Project" order="0" sideWeight="0.49395162" visible="true" weight="0.
|
|
798
|
+
<window_info active="true" content_ui="combo" id="Project" order="0" sideWeight="0.49395162" visible="true" weight="0.15294841" />
|
|
771
799
|
<window_info id="Structure" order="1" sideWeight="0.5060484" side_tool="true" weight="0.21637055" />
|
|
772
800
|
<window_info id="npm" order="2" side_tool="true" />
|
|
773
801
|
<window_info id="DB Browser" order="3" />
|
|
@@ -786,7 +814,7 @@
|
|
|
786
814
|
<window_info anchor="bottom" id="Version Control" order="9" show_stripe_button="false" />
|
|
787
815
|
<window_info anchor="bottom" id="DB Execution Console" order="10" />
|
|
788
816
|
<window_info anchor="bottom" id="TypeScript" order="11" />
|
|
789
|
-
<window_info
|
|
817
|
+
<window_info anchor="bottom" id="Terminal" order="12" sideWeight="0.4993515" visible="true" weight="0.40723982" />
|
|
790
818
|
<window_info anchor="bottom" id="Event Log" order="13" sideWeight="0.5006485" side_tool="true" weight="0.24063565" />
|
|
791
819
|
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
|
792
820
|
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
|
@@ -849,12 +877,12 @@
|
|
|
849
877
|
</line-breakpoint>
|
|
850
878
|
<line-breakpoint enabled="true" type="javascript">
|
|
851
879
|
<url>file://$PROJECT_DIR$/src/markdown/md-theorem/index.ts</url>
|
|
852
|
-
<line>
|
|
880
|
+
<line>3</line>
|
|
853
881
|
<option name="timeStamp" value="23" />
|
|
854
882
|
</line-breakpoint>
|
|
855
883
|
<line-breakpoint enabled="true" type="javascript">
|
|
856
884
|
<url>file://$PROJECT_DIR$/src/markdown/md-theorem/index.ts</url>
|
|
857
|
-
<line>
|
|
885
|
+
<line>4</line>
|
|
858
886
|
<option name="timeStamp" value="25" />
|
|
859
887
|
</line-breakpoint>
|
|
860
888
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -874,7 +902,7 @@
|
|
|
874
902
|
</line-breakpoint>
|
|
875
903
|
<line-breakpoint enabled="true" type="javascript">
|
|
876
904
|
<url>file://$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts</url>
|
|
877
|
-
<line>
|
|
905
|
+
<line>399</line>
|
|
878
906
|
<option name="timeStamp" value="29" />
|
|
879
907
|
</line-breakpoint>
|
|
880
908
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -891,350 +919,314 @@
|
|
|
891
919
|
</breakpoint-manager>
|
|
892
920
|
</component>
|
|
893
921
|
<component name="editorHistoryManager">
|
|
894
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
922
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
|
|
895
923
|
<provider selected="true" editor-type-id="text-editor">
|
|
896
|
-
<state relative-caret-position="
|
|
897
|
-
<caret line="
|
|
924
|
+
<state relative-caret-position="-2050">
|
|
925
|
+
<caret line="896" selection-start-line="896" selection-end-line="896" />
|
|
898
926
|
</state>
|
|
899
927
|
</provider>
|
|
900
928
|
</entry>
|
|
901
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
929
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/common/table-markdown.ts">
|
|
902
930
|
<provider selected="true" editor-type-id="text-editor">
|
|
903
|
-
<state
|
|
904
|
-
<caret
|
|
931
|
+
<state>
|
|
932
|
+
<caret column="13" selection-start-column="13" selection-end-column="13" />
|
|
905
933
|
</state>
|
|
906
934
|
</provider>
|
|
907
935
|
</entry>
|
|
908
|
-
<entry file="file://$PROJECT_DIR$/
|
|
936
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_tsv/_dataFormats.js">
|
|
909
937
|
<provider selected="true" editor-type-id="text-editor">
|
|
910
|
-
<state relative-caret-position="
|
|
911
|
-
<caret line="
|
|
938
|
+
<state relative-caret-position="735">
|
|
939
|
+
<caret line="51" column="42" selection-start-line="51" selection-start-column="42" selection-end-line="51" selection-end-column="42" />
|
|
912
940
|
</state>
|
|
913
941
|
</provider>
|
|
914
942
|
</entry>
|
|
915
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-
|
|
943
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-inline-rule/includegraphics.ts">
|
|
916
944
|
<provider selected="true" editor-type-id="text-editor">
|
|
917
|
-
<state relative-caret-position="
|
|
918
|
-
<caret line="
|
|
945
|
+
<state relative-caret-position="690">
|
|
946
|
+
<caret line="53" column="34" selection-start-line="53" selection-start-column="34" selection-end-line="53" selection-end-column="34" />
|
|
919
947
|
</state>
|
|
920
948
|
</provider>
|
|
921
949
|
</entry>
|
|
922
|
-
<entry file="file://$PROJECT_DIR$/
|
|
950
|
+
<entry file="file://$PROJECT_DIR$/src/helpers/normalize-link.ts">
|
|
923
951
|
<provider selected="true" editor-type-id="text-editor">
|
|
924
|
-
<state relative-caret-position="
|
|
925
|
-
<caret line="
|
|
952
|
+
<state relative-caret-position="45">
|
|
953
|
+
<caret line="4" column="3" selection-start-line="4" selection-start-column="3" selection-end-line="4" selection-end-column="3" />
|
|
926
954
|
</state>
|
|
927
955
|
</provider>
|
|
928
956
|
</entry>
|
|
929
|
-
<entry file="file://$PROJECT_DIR$/node_modules/
|
|
957
|
+
<entry file="file://$PROJECT_DIR$/node_modules/@types/node/punycode.d.ts" />
|
|
958
|
+
<entry file="file://$PROJECT_DIR$/package-lock.json" />
|
|
959
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/index.js" />
|
|
960
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/package.json" />
|
|
961
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/helpers/parse_link_destination.js" />
|
|
962
|
+
<entry file="file://$PROJECT_DIR$/src/contex-menu/index.ts">
|
|
930
963
|
<provider selected="true" editor-type-id="text-editor">
|
|
931
|
-
<state relative-caret-position="
|
|
932
|
-
<caret line="8" column="
|
|
964
|
+
<state relative-caret-position="72">
|
|
965
|
+
<caret line="8" column="27" selection-start-line="8" selection-start-column="27" selection-end-line="8" selection-end-column="27" />
|
|
933
966
|
</state>
|
|
934
967
|
</provider>
|
|
935
968
|
</entry>
|
|
936
|
-
<entry file="file://$PROJECT_DIR$/
|
|
937
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
938
|
-
</entry>
|
|
939
|
-
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_block/table.js">
|
|
940
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
941
|
-
</entry>
|
|
942
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-inline-rule/setcounter-section.ts">
|
|
969
|
+
<entry file="file://$PROJECT_DIR$/src/contex-menu/menu/helper.ts">
|
|
943
970
|
<provider selected="true" editor-type-id="text-editor">
|
|
944
|
-
<state relative-caret-position="
|
|
945
|
-
<caret line="
|
|
971
|
+
<state relative-caret-position="548">
|
|
972
|
+
<caret line="145" selection-start-line="145" selection-end-line="145" />
|
|
946
973
|
</state>
|
|
947
974
|
</provider>
|
|
948
975
|
</entry>
|
|
949
976
|
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-table.ts">
|
|
950
977
|
<provider selected="true" editor-type-id="text-editor">
|
|
951
|
-
<state relative-caret-position="
|
|
952
|
-
<caret line="
|
|
978
|
+
<state relative-caret-position="-3801">
|
|
979
|
+
<caret line="113" column="26" selection-start-line="113" selection-start-column="26" selection-end-line="113" selection-end-column="26" />
|
|
953
980
|
</state>
|
|
954
981
|
</provider>
|
|
955
982
|
</entry>
|
|
956
|
-
<entry file="file://$PROJECT_DIR$/
|
|
983
|
+
<entry file="file://$PROJECT_DIR$/doc/images/theorem_01.png">
|
|
984
|
+
<provider selected="true" editor-type-id="images" />
|
|
985
|
+
</entry>
|
|
986
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/index.ts">
|
|
957
987
|
<provider selected="true" editor-type-id="text-editor">
|
|
958
|
-
<state>
|
|
959
|
-
<
|
|
960
|
-
<element signature="e#0#59#0" expanded="true" />
|
|
961
|
-
</folding>
|
|
988
|
+
<state relative-caret-position="1080">
|
|
989
|
+
<caret line="79" column="29" selection-start-line="79" selection-start-column="19" selection-end-line="79" selection-end-column="29" />
|
|
962
990
|
</state>
|
|
963
991
|
</provider>
|
|
964
992
|
</entry>
|
|
965
|
-
<entry file="file://$PROJECT_DIR$/
|
|
993
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts">
|
|
966
994
|
<provider selected="true" editor-type-id="text-editor">
|
|
967
|
-
<state relative-caret-position="
|
|
968
|
-
<caret line="
|
|
995
|
+
<state relative-caret-position="3960">
|
|
996
|
+
<caret line="264" selection-start-line="264" selection-end-line="264" />
|
|
997
|
+
<folding>
|
|
998
|
+
<element signature="e#0#73#0" expanded="true" />
|
|
999
|
+
</folding>
|
|
969
1000
|
</state>
|
|
970
1001
|
</provider>
|
|
971
1002
|
</entry>
|
|
972
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1003
|
+
<entry file="file://$PROJECT_DIR$/src/contex-menu/menu/consts.ts">
|
|
973
1004
|
<provider selected="true" editor-type-id="text-editor">
|
|
974
|
-
<state relative-caret-position="
|
|
975
|
-
<caret line="
|
|
1005
|
+
<state relative-caret-position="210">
|
|
1006
|
+
<caret line="14" column="12" selection-start-line="14" selection-start-column="12" selection-end-line="14" selection-end-column="12" />
|
|
976
1007
|
</state>
|
|
977
1008
|
</provider>
|
|
978
1009
|
</entry>
|
|
979
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1010
|
+
<entry file="file://$PROJECT_DIR$/yarn.lock">
|
|
980
1011
|
<provider selected="true" editor-type-id="text-editor">
|
|
981
|
-
<state relative-caret-position="
|
|
982
|
-
<caret line="
|
|
1012
|
+
<state relative-caret-position="1665">
|
|
1013
|
+
<caret line="111" column="21" selection-start-line="111" selection-start-column="21" selection-end-line="111" selection-end-column="21" />
|
|
983
1014
|
</state>
|
|
984
1015
|
</provider>
|
|
985
1016
|
</entry>
|
|
986
|
-
<entry file="file://$PROJECT_DIR$/node_modules/
|
|
1017
|
+
<entry file="file://$PROJECT_DIR$/node_modules/punycode/punycode.es6.js">
|
|
987
1018
|
<provider selected="true" editor-type-id="text-editor">
|
|
988
|
-
<state relative-caret-position="
|
|
989
|
-
<caret line="
|
|
1019
|
+
<state relative-caret-position="6120">
|
|
1020
|
+
<caret line="408" column="15" selection-start-line="408" selection-start-column="15" selection-end-line="408" selection-end-column="15" />
|
|
990
1021
|
</state>
|
|
991
1022
|
</provider>
|
|
992
1023
|
</entry>
|
|
993
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1024
|
+
<entry file="file://$PROJECT_DIR$/node_modules/punycode/punycode.js">
|
|
994
1025
|
<provider selected="true" editor-type-id="text-editor" />
|
|
995
1026
|
</entry>
|
|
996
|
-
<entry file="file://$PROJECT_DIR$/
|
|
997
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
998
|
-
<state relative-caret-position="-1411" />
|
|
999
|
-
</provider>
|
|
1027
|
+
<entry file="file://$PROJECT_DIR$/node_modules/punycode/package.json">
|
|
1028
|
+
<provider selected="true" editor-type-id="text-editor" />
|
|
1000
1029
|
</entry>
|
|
1001
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1030
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/common.ts">
|
|
1002
1031
|
<provider selected="true" editor-type-id="text-editor">
|
|
1003
|
-
<state relative-caret-position="
|
|
1004
|
-
<caret line="
|
|
1032
|
+
<state relative-caret-position="675">
|
|
1033
|
+
<caret line="45" column="3" selection-start-line="45" selection-start-column="3" selection-end-line="45" selection-end-column="3" />
|
|
1005
1034
|
</state>
|
|
1006
1035
|
</provider>
|
|
1007
1036
|
</entry>
|
|
1008
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1009
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
1010
|
-
</entry>
|
|
1011
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/mathpix-markdown-plugins.tsx">
|
|
1037
|
+
<entry file="file://$PROJECT_DIR$/package.json">
|
|
1012
1038
|
<provider selected="true" editor-type-id="text-editor">
|
|
1013
|
-
<state relative-caret-position="
|
|
1014
|
-
<caret line="
|
|
1039
|
+
<state relative-caret-position="30">
|
|
1040
|
+
<caret line="2" column="20" selection-start-line="2" selection-start-column="20" selection-end-line="2" selection-end-column="20" />
|
|
1015
1041
|
</state>
|
|
1016
1042
|
</provider>
|
|
1017
1043
|
</entry>
|
|
1018
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1044
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-inline-rule/image.ts">
|
|
1019
1045
|
<provider selected="true" editor-type-id="text-editor">
|
|
1020
|
-
<state relative-caret-position="
|
|
1021
|
-
<caret line="
|
|
1022
|
-
<folding>
|
|
1023
|
-
<element signature="e#51#120#0" expanded="true" />
|
|
1024
|
-
</folding>
|
|
1046
|
+
<state relative-caret-position="47">
|
|
1047
|
+
<caret line="171" selection-start-line="171" selection-end-line="171" />
|
|
1025
1048
|
</state>
|
|
1026
1049
|
</provider>
|
|
1027
1050
|
</entry>
|
|
1028
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1051
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/parser_block.js" />
|
|
1052
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_inline/backticks.js" />
|
|
1053
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/parser_inline.js" />
|
|
1054
|
+
<entry file="file://$PROJECT_DIR$/node_modules/markdown-it/lib/rules_inline/state_inline.js" />
|
|
1055
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginTableTabular.ts">
|
|
1029
1056
|
<provider selected="true" editor-type-id="text-editor">
|
|
1030
|
-
<state relative-caret-position="
|
|
1031
|
-
<caret line="
|
|
1057
|
+
<state relative-caret-position="60">
|
|
1058
|
+
<caret line="14" column="23" selection-start-line="14" selection-start-column="23" selection-end-line="14" selection-end-column="23" />
|
|
1032
1059
|
</state>
|
|
1033
1060
|
</provider>
|
|
1034
1061
|
</entry>
|
|
1035
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1062
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/mathjax.ts">
|
|
1036
1063
|
<provider selected="true" editor-type-id="text-editor">
|
|
1037
|
-
<state
|
|
1038
|
-
<
|
|
1064
|
+
<state>
|
|
1065
|
+
<folding>
|
|
1066
|
+
<element signature="e#0#51#0" expanded="true" />
|
|
1067
|
+
<element signature="e#594#638#0" expanded="true" />
|
|
1068
|
+
</folding>
|
|
1039
1069
|
</state>
|
|
1040
1070
|
</provider>
|
|
1041
1071
|
</entry>
|
|
1042
|
-
<entry file="file://$PROJECT_DIR$/tests/_data/
|
|
1072
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_tabular/_data.js">
|
|
1043
1073
|
<provider selected="true" editor-type-id="text-editor">
|
|
1044
|
-
<state relative-caret-position="
|
|
1045
|
-
<caret line="
|
|
1074
|
+
<state relative-caret-position="3750">
|
|
1075
|
+
<caret line="250" column="2" selection-start-line="250" selection-start-column="2" selection-end-line="250" selection-end-column="2" />
|
|
1046
1076
|
</state>
|
|
1047
1077
|
</provider>
|
|
1048
1078
|
</entry>
|
|
1049
|
-
<entry file="file://$PROJECT_DIR$/tests/_data/_tsv_with_array/
|
|
1079
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_tsv_with_array/_data.js">
|
|
1050
1080
|
<provider selected="true" editor-type-id="text-editor">
|
|
1051
|
-
<state relative-caret-position="
|
|
1052
|
-
<caret line="
|
|
1081
|
+
<state relative-caret-position="5565">
|
|
1082
|
+
<caret line="371" selection-start-line="371" selection-end-line="373" selection-end-column="8" />
|
|
1053
1083
|
</state>
|
|
1054
1084
|
</provider>
|
|
1055
1085
|
</entry>
|
|
1056
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1086
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_tsv_with_array/_data_include_sub_math.js">
|
|
1057
1087
|
<provider selected="true" editor-type-id="text-editor" />
|
|
1058
1088
|
</entry>
|
|
1059
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1060
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
1061
|
-
<state relative-caret-position="15">
|
|
1062
|
-
<caret line="1" selection-start-line="1" selection-end-line="1" />
|
|
1063
|
-
</state>
|
|
1064
|
-
</provider>
|
|
1065
|
-
</entry>
|
|
1066
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/common/consts.ts">
|
|
1089
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-code.ts">
|
|
1067
1090
|
<provider selected="true" editor-type-id="text-editor">
|
|
1068
|
-
<state relative-caret-position="
|
|
1069
|
-
<caret line="
|
|
1091
|
+
<state relative-caret-position="105">
|
|
1092
|
+
<caret line="7" column="35" selection-start-line="7" selection-start-column="35" selection-end-line="7" selection-end-column="35" />
|
|
1070
1093
|
</state>
|
|
1071
1094
|
</provider>
|
|
1072
1095
|
</entry>
|
|
1073
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-
|
|
1096
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-renderer-rules/render-tabular.ts">
|
|
1074
1097
|
<provider selected="true" editor-type-id="text-editor">
|
|
1075
|
-
<state relative-caret-position="
|
|
1076
|
-
<caret line="
|
|
1098
|
+
<state relative-caret-position="2160">
|
|
1099
|
+
<caret line="145" column="32" selection-start-line="145" selection-start-column="32" selection-end-line="145" selection-end-column="32" />
|
|
1077
1100
|
</state>
|
|
1078
1101
|
</provider>
|
|
1079
1102
|
</entry>
|
|
1080
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-
|
|
1103
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-inline-rule/tabular.ts">
|
|
1081
1104
|
<provider selected="true" editor-type-id="text-editor">
|
|
1082
|
-
<state relative-caret-position="
|
|
1083
|
-
<caret line="
|
|
1105
|
+
<state relative-caret-position="105">
|
|
1106
|
+
<caret line="8" column="25" selection-start-line="8" selection-start-column="25" selection-end-line="8" selection-end-column="25" />
|
|
1084
1107
|
</state>
|
|
1085
1108
|
</provider>
|
|
1086
1109
|
</entry>
|
|
1087
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1110
|
+
<entry file="file://$PROJECT_DIR$/src/index.tsx">
|
|
1088
1111
|
<provider selected="true" editor-type-id="text-editor">
|
|
1089
|
-
<state relative-caret-position="
|
|
1090
|
-
<caret line="
|
|
1112
|
+
<state relative-caret-position="735">
|
|
1113
|
+
<caret line="49" column="82" selection-start-line="49" selection-start-column="82" selection-end-line="49" selection-end-column="82" />
|
|
1091
1114
|
<folding>
|
|
1092
|
-
<element signature="e#0#
|
|
1115
|
+
<element signature="e#0#56#0" expanded="true" />
|
|
1093
1116
|
</folding>
|
|
1094
1117
|
</state>
|
|
1095
1118
|
</provider>
|
|
1096
1119
|
</entry>
|
|
1097
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1098
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
1099
|
-
</entry>
|
|
1100
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts">
|
|
1120
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-math.ts">
|
|
1101
1121
|
<provider selected="true" editor-type-id="text-editor">
|
|
1102
|
-
<state relative-caret-position="
|
|
1103
|
-
<caret line="
|
|
1122
|
+
<state relative-caret-position="135">
|
|
1123
|
+
<caret line="9" selection-start-line="9" selection-end-line="9" />
|
|
1104
1124
|
<folding>
|
|
1105
1125
|
<element signature="e#0#38#0" expanded="true" />
|
|
1106
1126
|
</folding>
|
|
1107
1127
|
</state>
|
|
1108
1128
|
</provider>
|
|
1109
1129
|
</entry>
|
|
1110
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1111
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
1112
|
-
<state relative-caret-position="3750">
|
|
1113
|
-
<caret line="251" column="39" selection-start-line="251" selection-start-column="39" selection-end-line="251" selection-end-column="39" />
|
|
1114
|
-
</state>
|
|
1115
|
-
</provider>
|
|
1116
|
-
</entry>
|
|
1117
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/common/tsv.ts">
|
|
1118
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
1119
|
-
<state relative-caret-position="165">
|
|
1120
|
-
<caret line="11" selection-start-line="11" selection-end-line="11" />
|
|
1121
|
-
</state>
|
|
1122
|
-
</provider>
|
|
1123
|
-
</entry>
|
|
1124
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts">
|
|
1130
|
+
<entry file="file://$PROJECT_DIR$/tests/_data/_tsv/_data.js">
|
|
1125
1131
|
<provider selected="true" editor-type-id="text-editor">
|
|
1126
|
-
<state relative-caret-position="
|
|
1127
|
-
<caret line="
|
|
1132
|
+
<state relative-caret-position="23865">
|
|
1133
|
+
<caret line="1591" column="3" selection-start-line="1591" selection-start-column="3" selection-end-line="1591" selection-end-column="3" />
|
|
1128
1134
|
</state>
|
|
1129
1135
|
</provider>
|
|
1130
1136
|
</entry>
|
|
1131
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1137
|
+
<entry file="file://$PROJECT_DIR$/tests/_tsv.js">
|
|
1132
1138
|
<provider selected="true" editor-type-id="text-editor">
|
|
1133
|
-
<state relative-caret-position="
|
|
1134
|
-
<caret line="
|
|
1139
|
+
<state relative-caret-position="510">
|
|
1140
|
+
<caret line="34" column="55" selection-start-line="34" selection-start-column="55" selection-end-line="34" selection-end-column="55" />
|
|
1135
1141
|
</state>
|
|
1136
1142
|
</provider>
|
|
1137
1143
|
</entry>
|
|
1138
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
1139
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
1140
|
-
<state relative-caret-position="420">
|
|
1141
|
-
<caret line="29" column="50" selection-start-line="29" selection-start-column="50" selection-end-line="29" selection-end-column="50" />
|
|
1142
|
-
</state>
|
|
1143
|
-
</provider>
|
|
1144
|
-
</entry>
|
|
1145
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
|
|
1146
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
1147
|
-
<state relative-caret-position="13320">
|
|
1148
|
-
<caret line="890" column="19" selection-start-line="890" selection-start-column="19" selection-end-line="890" selection-end-column="19" />
|
|
1149
|
-
</state>
|
|
1150
|
-
</provider>
|
|
1151
|
-
</entry>
|
|
1152
|
-
<entry file="file://$PROJECT_DIR$/src/mathjax/my-BaseMappings.ts">
|
|
1153
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
1154
|
-
</entry>
|
|
1155
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginConfigured.ts">
|
|
1144
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts">
|
|
1156
1145
|
<provider selected="true" editor-type-id="text-editor">
|
|
1157
|
-
<state relative-caret-position="
|
|
1158
|
-
<caret line="
|
|
1146
|
+
<state relative-caret-position="15435">
|
|
1147
|
+
<caret line="1029" column="25" selection-start-line="1029" selection-start-column="25" selection-end-line="1029" selection-end-column="25" />
|
|
1159
1148
|
<folding>
|
|
1160
|
-
<element signature="e#0#
|
|
1149
|
+
<element signature="e#0#38#0" expanded="true" />
|
|
1161
1150
|
</folding>
|
|
1162
1151
|
</state>
|
|
1163
1152
|
</provider>
|
|
1164
1153
|
</entry>
|
|
1165
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/md-
|
|
1154
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-inline-rule/core-inline.ts">
|
|
1166
1155
|
<provider selected="true" editor-type-id="text-editor">
|
|
1167
|
-
<state relative-caret-position="
|
|
1168
|
-
<caret line="
|
|
1156
|
+
<state relative-caret-position="195">
|
|
1157
|
+
<caret line="13" column="51" selection-start-line="13" selection-start-column="51" selection-end-line="13" selection-end-column="51" />
|
|
1169
1158
|
</state>
|
|
1170
1159
|
</provider>
|
|
1171
1160
|
</entry>
|
|
1172
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1161
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-tabular.ts">
|
|
1173
1162
|
<provider selected="true" editor-type-id="text-editor">
|
|
1174
|
-
<state relative-caret-position="
|
|
1175
|
-
<caret line="
|
|
1163
|
+
<state relative-caret-position="570">
|
|
1164
|
+
<caret line="39" column="26" selection-start-line="39" selection-start-column="13" selection-end-line="39" selection-end-column="26" />
|
|
1176
1165
|
</state>
|
|
1177
1166
|
</provider>
|
|
1178
1167
|
</entry>
|
|
1179
|
-
<entry file="file://$PROJECT_DIR
|
|
1168
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/tabular-td.ts">
|
|
1180
1169
|
<provider selected="true" editor-type-id="text-editor">
|
|
1181
|
-
<state relative-caret-position="
|
|
1182
|
-
<caret line="
|
|
1170
|
+
<state relative-caret-position="1215">
|
|
1171
|
+
<caret line="82" column="13" selection-start-line="82" selection-start-column="13" selection-end-line="82" selection-end-column="13" />
|
|
1183
1172
|
</state>
|
|
1184
1173
|
</provider>
|
|
1185
1174
|
</entry>
|
|
1186
1175
|
<entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts">
|
|
1187
1176
|
<provider selected="true" editor-type-id="text-editor">
|
|
1188
|
-
<state relative-caret-position="
|
|
1189
|
-
<caret line="
|
|
1177
|
+
<state relative-caret-position="2730">
|
|
1178
|
+
<caret line="182" column="3" selection-start-line="182" selection-start-column="3" selection-end-line="182" selection-end-column="3" />
|
|
1190
1179
|
<folding>
|
|
1191
1180
|
<element signature="e#0#40#0" expanded="true" />
|
|
1192
1181
|
</folding>
|
|
1193
1182
|
</state>
|
|
1194
1183
|
</provider>
|
|
1195
1184
|
</entry>
|
|
1196
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1185
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/inline-rule.ts">
|
|
1197
1186
|
<provider selected="true" editor-type-id="text-editor">
|
|
1198
|
-
<state relative-caret-position="
|
|
1199
|
-
<caret line="
|
|
1187
|
+
<state relative-caret-position="915">
|
|
1188
|
+
<caret line="76" column="23" selection-start-line="76" selection-start-column="23" selection-end-line="76" selection-end-column="23" />
|
|
1200
1189
|
</state>
|
|
1201
1190
|
</provider>
|
|
1202
1191
|
</entry>
|
|
1203
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1192
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/common/consts.ts">
|
|
1204
1193
|
<provider selected="true" editor-type-id="text-editor">
|
|
1205
|
-
<state relative-caret-position="
|
|
1206
|
-
<caret line="
|
|
1194
|
+
<state relative-caret-position="750">
|
|
1195
|
+
<caret line="50" column="7" selection-start-line="50" selection-start-column="7" selection-end-line="50" selection-end-column="7" />
|
|
1207
1196
|
</state>
|
|
1208
1197
|
</provider>
|
|
1209
1198
|
</entry>
|
|
1210
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1199
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/multi-column-row.ts">
|
|
1211
1200
|
<provider selected="true" editor-type-id="text-editor">
|
|
1212
|
-
<state relative-caret-position="
|
|
1213
|
-
<caret line="
|
|
1201
|
+
<state relative-caret-position="1560">
|
|
1202
|
+
<caret line="109" column="49" selection-start-line="109" selection-start-column="49" selection-end-line="109" selection-end-column="49" />
|
|
1214
1203
|
</state>
|
|
1215
1204
|
</provider>
|
|
1216
1205
|
</entry>
|
|
1217
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1206
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/utils.ts">
|
|
1218
1207
|
<provider selected="true" editor-type-id="text-editor">
|
|
1219
|
-
<state relative-caret-position="
|
|
1220
|
-
<caret line="
|
|
1208
|
+
<state relative-caret-position="270">
|
|
1209
|
+
<caret line="18" selection-start-line="18" selection-end-line="18" />
|
|
1221
1210
|
<folding>
|
|
1222
|
-
<element signature="e#
|
|
1211
|
+
<element signature="e#6788#7766#0" />
|
|
1223
1212
|
</folding>
|
|
1224
1213
|
</state>
|
|
1225
1214
|
</provider>
|
|
1226
1215
|
</entry>
|
|
1227
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
1216
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts">
|
|
1228
1217
|
<provider selected="true" editor-type-id="text-editor">
|
|
1229
|
-
<state relative-caret-position="
|
|
1230
|
-
<caret line="
|
|
1218
|
+
<state relative-caret-position="244">
|
|
1219
|
+
<caret line="246" column="21" selection-start-line="246" selection-start-column="21" selection-end-line="246" selection-end-column="38" />
|
|
1231
1220
|
</state>
|
|
1232
1221
|
</provider>
|
|
1233
1222
|
</entry>
|
|
1234
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1223
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts">
|
|
1235
1224
|
<provider selected="true" editor-type-id="text-editor">
|
|
1236
|
-
<state relative-caret-position="
|
|
1237
|
-
<caret line="
|
|
1225
|
+
<state relative-caret-position="118">
|
|
1226
|
+
<caret line="174" column="8" lean-forward="true" selection-start-line="174" selection-start-column="8" selection-end-line="174" selection-end-column="8" />
|
|
1227
|
+
<folding>
|
|
1228
|
+
<element signature="e#0#47#0" expanded="true" />
|
|
1229
|
+
</folding>
|
|
1238
1230
|
</state>
|
|
1239
1231
|
</provider>
|
|
1240
1232
|
</entry>
|