mathpix-markdown-it 1.2.4 → 1.2.5
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/.circleci/config.yml +2 -2
- package/.idea/workspace.xml +479 -263
- package/README.md +11 -0
- package/es5/bundle.js +1 -1
- package/es5/context-menu.js +1 -1
- package/es5/index.js +1 -1
- package/lib/bundle.js +3 -2
- package/lib/bundle.js.map +1 -1
- package/lib/components/mathpix-markdown/index.js +3 -2
- package/lib/components/mathpix-markdown/index.js.map +1 -1
- package/lib/contex-menu/index.js +60 -44
- package/lib/contex-menu/index.js.map +1 -1
- package/lib/contex-menu/menu/helper.js +24 -17
- package/lib/contex-menu/menu/helper.js.map +1 -1
- package/lib/contex-menu/menu/index.js +21 -16
- package/lib/contex-menu/menu/index.js.map +1 -1
- package/lib/contex-menu/menu/menu-item-actions.js +30 -23
- package/lib/contex-menu/menu/menu-item-actions.js.map +1 -1
- package/lib/contex-menu/menu/menu-item.js +8 -7
- package/lib/contex-menu/menu/menu-item.js.map +1 -1
- package/lib/contex-menu/menu/menu-items.js +4 -3
- package/lib/contex-menu/menu/menu-items.js.map +1 -1
- package/lib/contex-menu/styles.js +3 -2
- package/lib/contex-menu/styles.js.map +1 -1
- package/lib/context-menu.js +3 -2
- package/lib/context-menu.js.map +1 -1
- package/lib/helpers/normalize-link.js +2 -1
- package/lib/helpers/normalize-link.js.map +1 -1
- package/lib/helpers/parse-mmd-element.js +15 -9
- package/lib/helpers/parse-mmd-element.js.map +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.js +2 -1
- package/lib/index.js.map +1 -1
- package/lib/markdown/common/consts.js +1 -1
- package/lib/markdown/common/consts.js.map +1 -1
- package/lib/markdown/common/csv.js +5 -3
- package/lib/markdown/common/csv.js.map +1 -1
- package/lib/markdown/common/labels.js +28 -18
- package/lib/markdown/common/labels.js.map +1 -1
- package/lib/markdown/common/table-markdown.js +7 -4
- package/lib/markdown/common/table-markdown.js.map +1 -1
- package/lib/markdown/common/tsv.js +2 -1
- package/lib/markdown/common/tsv.js.map +1 -1
- package/lib/markdown/common.js +12 -7
- package/lib/markdown/common.js.map +1 -1
- package/lib/markdown/dom-adaptor/index.js +2 -1
- package/lib/markdown/dom-adaptor/index.js.map +1 -1
- package/lib/markdown/highlight/common.js +27 -18
- package/lib/markdown/highlight/common.js.map +1 -1
- package/lib/markdown/highlight/highlight-math-token.js +21 -15
- package/lib/markdown/highlight/highlight-math-token.js.map +1 -1
- package/lib/markdown/highlight/render-rule-highlights.js +40 -34
- package/lib/markdown/highlight/render-rule-highlights.js.map +1 -1
- package/lib/markdown/index.js +7 -5
- package/lib/markdown/index.js.map +1 -1
- package/lib/markdown/mathpix-markdown-plugins.d.ts +1 -1
- package/lib/markdown/mathpix-markdown-plugins.js +23 -19
- package/lib/markdown/mathpix-markdown-plugins.js.map +1 -1
- package/lib/markdown/md-ascii/index.js +10 -7
- package/lib/markdown/md-ascii/index.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-align.js +21 -19
- package/lib/markdown/md-block-rule/begin-align.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-table.js +26 -21
- package/lib/markdown/md-block-rule/begin-table.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/common.d.ts +5 -4
- package/lib/markdown/md-block-rule/begin-tabular/common.js +19 -11
- package/lib/markdown/md-block-rule/begin-tabular/common.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/index.d.ts +5 -5
- package/lib/markdown/md-block-rule/begin-tabular/index.js +38 -23
- package/lib/markdown/md-block-rule/begin-tabular/index.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/multi-column-row.js +15 -12
- 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 +34 -32
- package/lib/markdown/md-block-rule/begin-tabular/parse-tabular.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/sub-code.js +11 -9
- package/lib/markdown/md-block-rule/begin-tabular/sub-code.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/sub-math.d.ts +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/sub-math.js +21 -17
- package/lib/markdown/md-block-rule/begin-tabular/sub-math.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/sub-tabular.js +10 -7
- package/lib/markdown/md-block-rule/begin-tabular/sub-tabular.js.map +1 -1
- package/lib/markdown/md-block-rule/begin-tabular/tabular-td.d.ts +2 -2
- package/lib/markdown/md-block-rule/begin-tabular/tabular-td.js +34 -27
- package/lib/markdown/md-block-rule/begin-tabular/tabular-td.js.map +1 -1
- package/lib/markdown/md-block-rule/helper.js +2 -1
- package/lib/markdown/md-block-rule/helper.js.map +1 -1
- package/lib/markdown/md-block-rule/lists/index.js +12 -10
- package/lib/markdown/md-block-rule/lists/index.js.map +1 -1
- package/lib/markdown/md-block-rule/lists/re-level.js +24 -14
- package/lib/markdown/md-block-rule/lists/re-level.js.map +1 -1
- package/lib/markdown/md-block-rule/parse-error.d.ts +2 -2
- package/lib/markdown/md-block-rule/parse-error.js +22 -9
- package/lib/markdown/md-block-rule/parse-error.js.map +1 -1
- package/lib/markdown/md-block-rule/renewcommand.js +9 -6
- package/lib/markdown/md-block-rule/renewcommand.js.map +1 -1
- package/lib/markdown/md-chemistry/chemistry-drawer.js +8 -8
- package/lib/markdown/md-chemistry/chemistry-drawer.js.map +1 -1
- package/lib/markdown/md-chemistry/chemistry-options.js +8 -4
- package/lib/markdown/md-chemistry/chemistry-options.js.map +1 -1
- package/lib/markdown/md-chemistry/index.d.ts +1 -1
- package/lib/markdown/md-chemistry/index.js +18 -17
- package/lib/markdown/md-chemistry/index.js.map +1 -1
- package/lib/markdown/md-chemistry/smiles-drawer/src/Atom.js +2 -1
- package/lib/markdown/md-chemistry/smiles-drawer/src/Atom.js.map +1 -1
- package/lib/markdown/md-chemistry/smiles-drawer/src/CanvasWrapper.js +2 -2
- package/lib/markdown/md-chemistry/smiles-drawer/src/CanvasWrapper.js.map +1 -1
- package/lib/markdown/md-chemistry/smiles-drawer/src/Drawer.js +3 -3
- package/lib/markdown/md-chemistry/smiles-drawer/src/Drawer.js.map +1 -1
- package/lib/markdown/md-chemistry/smiles-drawer/src/Parser.js.map +1 -1
- package/lib/markdown/md-chemistry/smiles-drawer/src/RingConnection.js +1 -1
- package/lib/markdown/md-chemistry/smiles-drawer/src/RingConnection.js.map +1 -1
- package/lib/markdown/md-chemistry/smiles-drawer/src/SSSR.js +2 -2
- package/lib/markdown/md-chemistry/smiles-drawer/src/SSSR.js.map +1 -1
- package/lib/markdown/md-chemistry/smiles-drawer/src/SvgDrawer.js +16 -16
- package/lib/markdown/md-chemistry/smiles-drawer/src/SvgDrawer.js.map +1 -1
- package/lib/markdown/md-chemistry/smiles-drawer/src/SvgWrapper.js +14 -14
- package/lib/markdown/md-chemistry/smiles-drawer/src/SvgWrapper.js.map +1 -1
- package/lib/markdown/md-core-rules/set-positions.js +23 -18
- package/lib/markdown/md-core-rules/set-positions.js.map +1 -1
- package/lib/markdown/md-inline-rule/core-inline.js +2 -1
- package/lib/markdown/md-inline-rule/core-inline.js.map +1 -1
- package/lib/markdown/md-inline-rule/image.js +7 -5
- package/lib/markdown/md-inline-rule/image.js.map +1 -1
- package/lib/markdown/md-inline-rule/includegraphics.js +10 -7
- package/lib/markdown/md-inline-rule/includegraphics.js.map +1 -1
- package/lib/markdown/md-inline-rule/lists.js +9 -5
- package/lib/markdown/md-inline-rule/lists.js.map +1 -1
- package/lib/markdown/md-inline-rule/new-line-to-space.js +2 -1
- package/lib/markdown/md-inline-rule/new-line-to-space.js.map +1 -1
- package/lib/markdown/md-inline-rule/renewcommand.js +3 -2
- package/lib/markdown/md-inline-rule/renewcommand.js.map +1 -1
- package/lib/markdown/md-inline-rule/setcounter-section.js +3 -2
- package/lib/markdown/md-inline-rule/setcounter-section.js.map +1 -1
- package/lib/markdown/md-inline-rule/tabular.js +5 -4
- package/lib/markdown/md-inline-rule/tabular.js.map +1 -1
- package/lib/markdown/md-inline-rule/text-collapse.js +2 -1
- package/lib/markdown/md-inline-rule/text-collapse.js.map +1 -1
- package/lib/markdown/md-inline-rule/text-mode.js +3 -2
- package/lib/markdown/md-inline-rule/text-mode.js.map +1 -1
- 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/breaks.js +4 -2
- package/lib/markdown/md-renderer-rules/breaks.js.map +1 -1
- package/lib/markdown/md-renderer-rules/index.js +20 -17
- package/lib/markdown/md-renderer-rules/index.js.map +1 -1
- package/lib/markdown/md-renderer-rules/render-lists.js +55 -48
- package/lib/markdown/md-renderer-rules/render-lists.js.map +1 -1
- package/lib/markdown/md-renderer-rules/render-tabular.js +15 -13
- package/lib/markdown/md-renderer-rules/render-tabular.js.map +1 -1
- package/lib/markdown/md-svg-to-base64/index.d.ts +1 -1
- package/lib/markdown/md-svg-to-base64/index.js +1 -1
- package/lib/markdown/md-svg-to-base64/index.js.map +1 -1
- package/lib/markdown/md-theorem/block-rule.js +22 -17
- package/lib/markdown/md-theorem/block-rule.js.map +1 -1
- package/lib/markdown/md-theorem/helper.js +38 -25
- package/lib/markdown/md-theorem/helper.js.map +1 -1
- package/lib/markdown/md-theorem/index.d.ts +1 -1
- package/lib/markdown/md-theorem/index.js +16 -15
- package/lib/markdown/md-theorem/index.js.map +1 -1
- package/lib/markdown/md-theorem/inline-rule.js +22 -15
- package/lib/markdown/md-theorem/inline-rule.js.map +1 -1
- package/lib/markdown/mdHighlightCodePlugin.js +3 -3
- package/lib/markdown/mdHighlightCodePlugin.js.map +1 -1
- package/lib/markdown/mdOptions.js +2 -1
- package/lib/markdown/mdOptions.js.map +1 -1
- package/lib/markdown/mdPluginAnchor.d.ts +1 -1
- package/lib/markdown/mdPluginAnchor.js +1 -1
- package/lib/markdown/mdPluginAnchor.js.map +1 -1
- package/lib/markdown/mdPluginConfigured.d.ts +8 -8
- package/lib/markdown/mdPluginLists.d.ts +1 -1
- package/lib/markdown/mdPluginLists.js +10 -10
- package/lib/markdown/mdPluginLists.js.map +1 -1
- package/lib/markdown/mdPluginRaw.js +67 -45
- package/lib/markdown/mdPluginRaw.js.map +1 -1
- package/lib/markdown/mdPluginSeparateForBlock.d.ts +1 -1
- package/lib/markdown/mdPluginSeparateForBlock.js +2 -2
- package/lib/markdown/mdPluginSeparateForBlock.js.map +1 -1
- package/lib/markdown/mdPluginTOC.d.ts +1 -1
- package/lib/markdown/mdPluginTOC.js +10 -8
- package/lib/markdown/mdPluginTOC.js.map +1 -1
- package/lib/markdown/mdPluginTableTabular.d.ts +1 -1
- package/lib/markdown/mdPluginTableTabular.js +13 -13
- package/lib/markdown/mdPluginTableTabular.js.map +1 -1
- package/lib/markdown/mdPluginText.d.ts +1 -1
- package/lib/markdown/mdPluginText.js +60 -55
- package/lib/markdown/mdPluginText.js.map +1 -1
- package/lib/markdown/mdSetPositionsAndHighlight.d.ts +1 -1
- package/lib/markdown/mdSetPositionsAndHighlight.js.map +1 -1
- package/lib/markdown/rules.js +27 -26
- package/lib/markdown/rules.js.map +1 -1
- package/lib/markdown/sanitize/consts.js +2 -1
- package/lib/markdown/sanitize/consts.js.map +1 -1
- package/lib/markdown/sanitize/index.js +3 -2
- package/lib/markdown/sanitize/index.js.map +1 -1
- package/lib/markdown/sanitize/sanitize-html.js +8 -8
- package/lib/markdown/sanitize/sanitize-html.js.map +1 -1
- package/lib/markdown/utils.js +47 -27
- package/lib/markdown/utils.js.map +1 -1
- package/lib/mathjax/index.js +27 -18
- package/lib/mathjax/index.js.map +1 -1
- package/lib/mathjax/mathJaxConfig.js +1 -1
- package/lib/mathjax/mathJaxConfig.js.map +1 -1
- package/lib/mathjax/mathjax.js +5 -5
- package/lib/mathjax/mathjax.js.map +1 -1
- package/lib/mathjax/mathml-word.js +4 -4
- package/lib/mathjax/mathml-word.js.map +1 -1
- package/lib/mathjax/serialized-ascii/common.js +2 -1
- package/lib/mathjax/serialized-ascii/common.js.map +1 -1
- package/lib/mathjax/serialized-ascii/handlers.js +123 -116
- package/lib/mathjax/serialized-ascii/handlers.js.map +1 -1
- package/lib/mathjax/serialized-ascii/index.js +38 -38
- package/lib/mathjax/serialized-ascii/index.js.map +1 -1
- package/lib/mathpix-markdown-model/check-formula.js +5 -4
- package/lib/mathpix-markdown-model/check-formula.js.map +1 -1
- package/lib/mathpix-markdown-model/html-page.js +3 -2
- package/lib/mathpix-markdown-model/html-page.js.map +1 -1
- package/lib/mathpix-markdown-model/index.d.ts +16 -9
- package/lib/mathpix-markdown-model/index.js +36 -28
- package/lib/mathpix-markdown-model/index.js.map +1 -1
- package/lib/sre/index.js +5 -3
- package/lib/sre/index.js.map +1 -1
- package/lib/sre/sre-browser.js +2 -1
- package/lib/sre/sre-browser.js.map +1 -1
- package/lib/sre/sre-node.js +2 -1
- package/lib/sre/sre-node.js.map +1 -1
- package/lib/styles/halpers.js +3 -2
- package/lib/styles/halpers.js.map +1 -1
- package/lib/styles/index.js +6 -4
- package/lib/styles/index.js.map +1 -1
- package/lib/styles/styles-container.js +3 -2
- package/lib/styles/styles-container.js.map +1 -1
- package/lib/styles/styles-tabular.js +3 -2
- package/lib/styles/styles-tabular.js.map +1 -1
- package/lib/yaml-parser/index.js +6 -5
- package/lib/yaml-parser/index.js.map +1 -1
- package/package.json +13 -13
package/.idea/workspace.xml
CHANGED
|
@@ -3,12 +3,9 @@
|
|
|
3
3
|
<component name="BookmarkManager">
|
|
4
4
|
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts" line="38" mnemonic="5" />
|
|
5
5
|
<bookmark url="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts" line="316" mnemonic="7" />
|
|
6
|
-
<bookmark url="file://$PROJECT_DIR$/src/
|
|
7
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/
|
|
8
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/
|
|
9
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" line="625" mnemonic="1" />
|
|
10
|
-
<bookmark url="file://$PROJECT_DIR$/src/mathjax/index.ts" line="365" mnemonic="2" />
|
|
11
|
-
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/parse-error.ts" line="47" mnemonic="3" />
|
|
6
|
+
<bookmark url="file://$PROJECT_DIR$/src/mathjax/index.ts" line="364" mnemonic="2" />
|
|
7
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" line="308" mnemonic="1" />
|
|
8
|
+
<bookmark url="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" line="307" mnemonic="0" />
|
|
12
9
|
</component>
|
|
13
10
|
<component name="ChangeListManager">
|
|
14
11
|
<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" />
|
|
@@ -26,7 +23,7 @@
|
|
|
26
23
|
<session id="1706553226">
|
|
27
24
|
<usages-collector id="statistics.lifecycle.project">
|
|
28
25
|
<counts>
|
|
29
|
-
<entry key="project.closed" value="
|
|
26
|
+
<entry key="project.closed" value="204" />
|
|
30
27
|
<entry key="project.open.time.10" value="6" />
|
|
31
28
|
<entry key="project.open.time.11" value="12" />
|
|
32
29
|
<entry key="project.open.time.12" value="5" />
|
|
@@ -36,7 +33,7 @@
|
|
|
36
33
|
<entry key="project.open.time.17" value="2" />
|
|
37
34
|
<entry key="project.open.time.18" value="3" />
|
|
38
35
|
<entry key="project.open.time.19" value="1" />
|
|
39
|
-
<entry key="project.open.time.2" value="
|
|
36
|
+
<entry key="project.open.time.2" value="19" />
|
|
40
37
|
<entry key="project.open.time.20" value="3" />
|
|
41
38
|
<entry key="project.open.time.22" value="4" />
|
|
42
39
|
<entry key="project.open.time.3" value="45" />
|
|
@@ -51,12 +48,12 @@
|
|
|
51
48
|
<entry key="project.open.time.7" value="6" />
|
|
52
49
|
<entry key="project.open.time.8" value="2" />
|
|
53
50
|
<entry key="project.open.time.9" value="2" />
|
|
54
|
-
<entry key="project.opened" value="
|
|
51
|
+
<entry key="project.opened" value="230" />
|
|
55
52
|
</counts>
|
|
56
53
|
</usages-collector>
|
|
57
54
|
<usages-collector id="statistics.js.language.service.starts">
|
|
58
55
|
<counts>
|
|
59
|
-
<entry key="TypeScriptServerServiceImpl" value="
|
|
56
|
+
<entry key="TypeScriptServerServiceImpl" value="221" />
|
|
60
57
|
</counts>
|
|
61
58
|
</usages-collector>
|
|
62
59
|
<usages-collector id="statistics.file.extensions.open">
|
|
@@ -69,21 +66,21 @@
|
|
|
69
66
|
<entry key="gitignore" value="8" />
|
|
70
67
|
<entry key="gitmodules" value="1" />
|
|
71
68
|
<entry key="html" value="19" />
|
|
72
|
-
<entry key="js" value="
|
|
69
|
+
<entry key="js" value="516" />
|
|
73
70
|
<entry key="jshintignore" value="1" />
|
|
74
71
|
<entry key="jshintrc" value="1" />
|
|
75
|
-
<entry key="json" value="
|
|
72
|
+
<entry key="json" value="80" />
|
|
76
73
|
<entry key="jsx" value="23" />
|
|
77
|
-
<entry key="lock" value="
|
|
78
|
-
<entry key="md" value="
|
|
74
|
+
<entry key="lock" value="16" />
|
|
75
|
+
<entry key="md" value="47" />
|
|
79
76
|
<entry key="npmignore" value="3" />
|
|
80
77
|
<entry key="npmrc" value="1" />
|
|
81
78
|
<entry key="png" value="2" />
|
|
82
79
|
<entry key="sre" value="1" />
|
|
83
|
-
<entry key="ts" value="
|
|
84
|
-
<entry key="tsx" value="
|
|
80
|
+
<entry key="ts" value="1312" />
|
|
81
|
+
<entry key="tsx" value="56" />
|
|
85
82
|
<entry key="yarnignore" value="2" />
|
|
86
|
-
<entry key="yml" value="
|
|
83
|
+
<entry key="yml" value="3" />
|
|
87
84
|
</counts>
|
|
88
85
|
</usages-collector>
|
|
89
86
|
<usages-collector id="statistics.file.types.open">
|
|
@@ -94,16 +91,16 @@
|
|
|
94
91
|
<entry key="HTML" value="19" />
|
|
95
92
|
<entry key="Image" value="3" />
|
|
96
93
|
<entry key="JSHint" value="1" />
|
|
97
|
-
<entry key="JSON" value="
|
|
94
|
+
<entry key="JSON" value="75" />
|
|
98
95
|
<entry key="JSX Harmony" value="23" />
|
|
99
|
-
<entry key="JavaScript" value="
|
|
100
|
-
<entry key="Markdown" value="
|
|
96
|
+
<entry key="JavaScript" value="517" />
|
|
97
|
+
<entry key="Markdown" value="47" />
|
|
101
98
|
<entry key="PLAIN_TEXT" value="17" />
|
|
102
|
-
<entry key="TypeScript" value="
|
|
103
|
-
<entry key="TypeScript JSX" value="
|
|
104
|
-
<entry key="YAML" value="
|
|
105
|
-
<entry key="tsconfig" value="
|
|
106
|
-
<entry key="yarn.lock" value="
|
|
99
|
+
<entry key="TypeScript" value="1312" />
|
|
100
|
+
<entry key="TypeScript JSX" value="56" />
|
|
101
|
+
<entry key="YAML" value="3" />
|
|
102
|
+
<entry key="tsconfig" value="6" />
|
|
103
|
+
<entry key="yarn.lock" value="15" />
|
|
107
104
|
</counts>
|
|
108
105
|
</usages-collector>
|
|
109
106
|
<usages-collector id="statistics.file.extensions.edit">
|
|
@@ -111,26 +108,26 @@
|
|
|
111
108
|
<entry key="css" value="98" />
|
|
112
109
|
<entry key="html" value="48" />
|
|
113
110
|
<entry key="js" value="13078" />
|
|
114
|
-
<entry key="json" value="
|
|
111
|
+
<entry key="json" value="119" />
|
|
115
112
|
<entry key="jsx" value="1587" />
|
|
116
|
-
<entry key="md" value="
|
|
117
|
-
<entry key="ts" value="
|
|
118
|
-
<entry key="tsx" value="
|
|
119
|
-
<entry key="yml" value="
|
|
113
|
+
<entry key="md" value="2499" />
|
|
114
|
+
<entry key="ts" value="120448" />
|
|
115
|
+
<entry key="tsx" value="1241" />
|
|
116
|
+
<entry key="yml" value="41" />
|
|
120
117
|
</counts>
|
|
121
118
|
</usages-collector>
|
|
122
119
|
<usages-collector id="statistics.file.types.edit">
|
|
123
120
|
<counts>
|
|
124
121
|
<entry key="CSS" value="98" />
|
|
125
122
|
<entry key="HTML" value="124" />
|
|
126
|
-
<entry key="JSON" value="
|
|
123
|
+
<entry key="JSON" value="88" />
|
|
127
124
|
<entry key="JSX Harmony" value="1587" />
|
|
128
125
|
<entry key="JavaScript" value="13091" />
|
|
129
|
-
<entry key="Markdown" value="
|
|
130
|
-
<entry key="TypeScript" value="
|
|
131
|
-
<entry key="TypeScript JSX" value="
|
|
132
|
-
<entry key="YAML" value="
|
|
133
|
-
<entry key="tsconfig" value="
|
|
126
|
+
<entry key="Markdown" value="2419" />
|
|
127
|
+
<entry key="TypeScript" value="120439" />
|
|
128
|
+
<entry key="TypeScript JSX" value="1241" />
|
|
129
|
+
<entry key="YAML" value="41" />
|
|
130
|
+
<entry key="tsconfig" value="31" />
|
|
134
131
|
</counts>
|
|
135
132
|
</usages-collector>
|
|
136
133
|
</session>
|
|
@@ -139,61 +136,137 @@
|
|
|
139
136
|
<favorites_list name="mathpix-markdown-it" />
|
|
140
137
|
</component>
|
|
141
138
|
<component name="FileEditorManager">
|
|
142
|
-
<splitter split-orientation="horizontal" split-proportion="0.
|
|
139
|
+
<splitter split-orientation="horizontal" split-proportion="0.528675">
|
|
143
140
|
<split-first>
|
|
144
141
|
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
145
142
|
<file pinned="false" current-in-tab="false">
|
|
146
|
-
<entry file="file://$PROJECT_DIR$/
|
|
147
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
143
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
144
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
145
|
+
<state split_layout="FIRST">
|
|
146
|
+
<first_editor relative-caret-position="320">
|
|
147
|
+
<caret line="833" column="54" selection-start-line="833" selection-start-column="54" selection-end-line="833" selection-end-column="54" />
|
|
148
|
+
<folding>
|
|
149
|
+
<element signature="e#130#338#0" expanded="true" />
|
|
150
|
+
<element signature="e#0#31#0" expanded="true" />
|
|
151
|
+
<element signature="e#598#713#0" expanded="true" />
|
|
152
|
+
<element signature="e#618#955#0" expanded="true" />
|
|
153
|
+
<element signature="e#632#852#0" expanded="true" />
|
|
154
|
+
<element signature="n#style#0;n#mathml#0;n#span#0;n#!!top" expanded="true" />
|
|
155
|
+
<element signature="n#style#0;n#asciimath#0;n#span#0;n#!!top" expanded="true" />
|
|
156
|
+
<element signature="n#style#0;n#latex#0;n#span#0;n#!!top" expanded="true" />
|
|
157
|
+
<element signature="n#style#0;n#tsv#0;n#div#0;n#!!top" expanded="true" />
|
|
158
|
+
<element signature="n#style#0;n#asciimath#0;n#span#0;n#div#0;n#!!top" expanded="true" />
|
|
159
|
+
<element signature="n#style#0;n#div#0;n#!!top" expanded="true" />
|
|
160
|
+
<element signature="n#style#0;n#tsv#0;n#div#0;n#!!top" expanded="true" />
|
|
161
|
+
<element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#0;n#div#0;n#!!top" expanded="true" />
|
|
162
|
+
<element signature="e#0#59#0" expanded="true" />
|
|
163
|
+
<element signature="n#style#0;n#mjx-container#0;n#span#0;n#div#0;n#!!top" expanded="true" />
|
|
164
|
+
<element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#0;n#div#0;n#!!top" expanded="true" />
|
|
165
|
+
<element signature="e#0#121#1" expanded="true" />
|
|
166
|
+
</folding>
|
|
167
|
+
</first_editor>
|
|
168
|
+
<second_editor />
|
|
169
|
+
</state>
|
|
170
|
+
</provider>
|
|
148
171
|
</entry>
|
|
149
172
|
</file>
|
|
150
|
-
<file pinned="false" current-in-tab="
|
|
151
|
-
<entry file="file://$PROJECT_DIR$/
|
|
152
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
173
|
+
<file pinned="false" current-in-tab="true">
|
|
174
|
+
<entry file="file://$PROJECT_DIR$/yarn.lock">
|
|
175
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
176
|
+
<state relative-caret-position="-88">
|
|
177
|
+
<caret line="2065" column="31" selection-start-line="2065" selection-start-column="31" selection-end-line="2065" selection-end-column="31" />
|
|
178
|
+
</state>
|
|
179
|
+
</provider>
|
|
153
180
|
</entry>
|
|
154
181
|
</file>
|
|
155
182
|
<file pinned="false" current-in-tab="false">
|
|
156
|
-
<entry file="file://$PROJECT_DIR$/
|
|
157
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
183
|
+
<entry file="file://$PROJECT_DIR$/src/index.tsx">
|
|
184
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
185
|
+
<state relative-caret-position="600">
|
|
186
|
+
<caret line="40" selection-start-line="40" selection-end-line="40" />
|
|
187
|
+
<folding>
|
|
188
|
+
<element signature="e#0#56#0" expanded="true" />
|
|
189
|
+
</folding>
|
|
190
|
+
</state>
|
|
191
|
+
</provider>
|
|
158
192
|
</entry>
|
|
159
193
|
</file>
|
|
160
194
|
<file pinned="false" current-in-tab="false">
|
|
161
|
-
<entry file="file://$PROJECT_DIR$/
|
|
162
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
195
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/index.ts">
|
|
196
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
197
|
+
<state relative-caret-position="2385">
|
|
198
|
+
<caret line="159" column="22" selection-start-line="159" selection-start-column="22" selection-end-line="159" selection-end-column="22" />
|
|
199
|
+
<folding>
|
|
200
|
+
<element signature="e#0#50#0" expanded="true" />
|
|
201
|
+
</folding>
|
|
202
|
+
</state>
|
|
203
|
+
</provider>
|
|
163
204
|
</entry>
|
|
164
205
|
</file>
|
|
165
206
|
<file pinned="false" current-in-tab="false">
|
|
166
|
-
<entry file="file://$PROJECT_DIR$/
|
|
167
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
207
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mathpix-markdown-plugins.tsx">
|
|
208
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
209
|
+
<state relative-caret-position="15">
|
|
210
|
+
<caret line="1" column="43" selection-start-line="1" selection-start-column="43" selection-end-line="1" selection-end-column="43" />
|
|
211
|
+
<folding>
|
|
212
|
+
<element signature="e#0#41#0" expanded="true" />
|
|
213
|
+
</folding>
|
|
214
|
+
</state>
|
|
215
|
+
</provider>
|
|
168
216
|
</entry>
|
|
169
217
|
</file>
|
|
170
218
|
<file pinned="false" current-in-tab="false">
|
|
171
|
-
<entry file="file://$PROJECT_DIR$/
|
|
172
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
219
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts">
|
|
220
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
221
|
+
<state relative-caret-position="10650">
|
|
222
|
+
<caret line="721" selection-start-line="721" selection-end-line="721" />
|
|
223
|
+
<folding>
|
|
224
|
+
<element signature="e#0#36#0" expanded="true" />
|
|
225
|
+
</folding>
|
|
226
|
+
</state>
|
|
227
|
+
</provider>
|
|
173
228
|
</entry>
|
|
174
229
|
</file>
|
|
175
230
|
<file pinned="false" current-in-tab="false">
|
|
176
|
-
<entry file="file://$PROJECT_DIR$/
|
|
177
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
231
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/index.ts">
|
|
232
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
233
|
+
<state relative-caret-position="390">
|
|
234
|
+
<caret line="26" column="14" selection-start-line="26" selection-start-column="14" selection-end-line="26" selection-end-column="14" />
|
|
235
|
+
<folding>
|
|
236
|
+
<element signature="e#0#87#0" expanded="true" />
|
|
237
|
+
</folding>
|
|
238
|
+
</state>
|
|
239
|
+
</provider>
|
|
178
240
|
</entry>
|
|
179
241
|
</file>
|
|
180
242
|
<file pinned="false" current-in-tab="false">
|
|
181
|
-
<entry file="file://$PROJECT_DIR$/
|
|
182
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
243
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/parse-error.ts">
|
|
244
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
245
|
+
<state relative-caret-position="570">
|
|
246
|
+
<caret line="47" column="43" selection-start-line="47" selection-start-column="43" selection-end-line="47" selection-end-column="43" />
|
|
247
|
+
</state>
|
|
248
|
+
</provider>
|
|
183
249
|
</entry>
|
|
184
250
|
</file>
|
|
185
251
|
<file pinned="false" current-in-tab="false">
|
|
186
|
-
<entry file="file://$PROJECT_DIR$/
|
|
252
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts">
|
|
187
253
|
<provider selected="true" editor-type-id="text-editor">
|
|
188
|
-
<state
|
|
254
|
+
<state>
|
|
255
|
+
<folding>
|
|
256
|
+
<element signature="e#0#40#0" expanded="true" />
|
|
257
|
+
</folding>
|
|
258
|
+
</state>
|
|
189
259
|
</provider>
|
|
190
260
|
</entry>
|
|
191
261
|
</file>
|
|
192
|
-
<file pinned="false" current-in-tab="
|
|
193
|
-
<entry file="file://$PROJECT_DIR$/
|
|
262
|
+
<file pinned="false" current-in-tab="false">
|
|
263
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts">
|
|
194
264
|
<provider selected="true" editor-type-id="text-editor">
|
|
195
|
-
<state relative-caret-position="
|
|
196
|
-
<caret line="
|
|
265
|
+
<state relative-caret-position="3600">
|
|
266
|
+
<caret line="240" column="11" selection-start-line="240" selection-start-column="11" selection-end-line="240" selection-end-column="11" />
|
|
267
|
+
<folding>
|
|
268
|
+
<element signature="e#0#47#0" expanded="true" />
|
|
269
|
+
</folding>
|
|
197
270
|
</state>
|
|
198
271
|
</provider>
|
|
199
272
|
</entry>
|
|
@@ -202,12 +275,34 @@
|
|
|
202
275
|
</split-first>
|
|
203
276
|
<split-second>
|
|
204
277
|
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
278
|
+
<file pinned="false" current-in-tab="true">
|
|
279
|
+
<entry file="file://$PROJECT_DIR$/package.json">
|
|
280
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
281
|
+
<state relative-caret-position="249">
|
|
282
|
+
<caret line="55" column="34" selection-start-line="55" selection-start-column="34" selection-end-line="55" selection-end-column="34" />
|
|
283
|
+
</state>
|
|
284
|
+
</provider>
|
|
285
|
+
</entry>
|
|
286
|
+
</file>
|
|
205
287
|
<file pinned="false" current-in-tab="false">
|
|
206
288
|
<entry file="file://$PROJECT_DIR$/examples/react-app/use-components/public/manifest.json">
|
|
207
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
289
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
290
|
+
<state relative-caret-position="90">
|
|
291
|
+
<caret line="6" column="41" selection-start-line="6" selection-start-column="41" selection-end-line="6" selection-end-column="41" />
|
|
292
|
+
</state>
|
|
293
|
+
</provider>
|
|
208
294
|
</entry>
|
|
209
295
|
</file>
|
|
210
|
-
<file pinned="false" current-in-tab="
|
|
296
|
+
<file pinned="false" current-in-tab="false">
|
|
297
|
+
<entry file="file://$PROJECT_DIR$/node_modules/highlight.js/lib/index.js">
|
|
298
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
299
|
+
<state relative-caret-position="1335">
|
|
300
|
+
<caret line="89" column="61" selection-start-line="89" selection-start-column="61" selection-end-line="89" selection-end-column="61" />
|
|
301
|
+
</state>
|
|
302
|
+
</provider>
|
|
303
|
+
</entry>
|
|
304
|
+
</file>
|
|
305
|
+
<file pinned="false" current-in-tab="false">
|
|
211
306
|
<entry file="file://$PROJECT_DIR$/examples/react-app/use-components/public/index.html">
|
|
212
307
|
<provider selected="true" editor-type-id="text-editor">
|
|
213
308
|
<state relative-caret-position="30">
|
|
@@ -216,6 +311,36 @@
|
|
|
216
311
|
</provider>
|
|
217
312
|
</entry>
|
|
218
313
|
</file>
|
|
314
|
+
<file pinned="false" current-in-tab="false">
|
|
315
|
+
<entry file="file://$PROJECT_DIR$/node_modules/highlight.js/lib/languages/javascript.js">
|
|
316
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
317
|
+
<state relative-caret-position="9465">
|
|
318
|
+
<caret line="631" column="22" selection-start-line="631" selection-start-column="22" selection-end-line="631" selection-end-column="22" />
|
|
319
|
+
</state>
|
|
320
|
+
</provider>
|
|
321
|
+
</entry>
|
|
322
|
+
</file>
|
|
323
|
+
<file pinned="false" current-in-tab="false">
|
|
324
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
|
|
325
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
326
|
+
<state relative-caret-position="3300">
|
|
327
|
+
<caret line="227" column="13" selection-start-line="227" selection-start-column="13" selection-end-line="227" selection-end-column="13" />
|
|
328
|
+
</state>
|
|
329
|
+
</provider>
|
|
330
|
+
</entry>
|
|
331
|
+
</file>
|
|
332
|
+
<file pinned="false" current-in-tab="false">
|
|
333
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts">
|
|
334
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
335
|
+
<state relative-caret-position="166">
|
|
336
|
+
<caret line="254" column="22" selection-start-line="254" selection-start-column="7" selection-end-line="254" selection-end-column="22" />
|
|
337
|
+
<folding>
|
|
338
|
+
<element signature="e#0#40#0" expanded="true" />
|
|
339
|
+
</folding>
|
|
340
|
+
</state>
|
|
341
|
+
</provider>
|
|
342
|
+
</entry>
|
|
343
|
+
</file>
|
|
219
344
|
</leaf>
|
|
220
345
|
</split-second>
|
|
221
346
|
</splitter>
|
|
@@ -229,36 +354,36 @@
|
|
|
229
354
|
</component>
|
|
230
355
|
<component name="FindInProjectRecents">
|
|
231
356
|
<findStrings>
|
|
232
|
-
<find>
|
|
233
|
-
<find>
|
|
234
|
-
<find
|
|
235
|
-
<find>
|
|
236
|
-
<find
|
|
237
|
-
<find>
|
|
238
|
-
<find>
|
|
239
|
-
<find>
|
|
240
|
-
<find>
|
|
241
|
-
<find>
|
|
242
|
-
<find
|
|
243
|
-
<find>markerType</find>
|
|
244
|
-
<find>isTextMarkerTokens</find>
|
|
245
|
-
<find>data-custom-marker-content</find>
|
|
246
|
-
<find>console</find>
|
|
247
|
-
<find>sourceURL</find>
|
|
248
|
-
<find>sourceURL=</find>
|
|
249
|
-
<find>initDocument</find>
|
|
250
|
-
<find>include_error</find>
|
|
251
|
-
<find>TOutputMath</find>
|
|
252
|
-
<find>hideRenderingErrors</find>
|
|
357
|
+
<find>word-wrap</find>
|
|
358
|
+
<find>jsdom</find>
|
|
359
|
+
<find>@babel/helper-compilation-targets@^7.17.10</find>
|
|
360
|
+
<find>babel-plugin-polyfill-corejs2</find>
|
|
361
|
+
<find>@babel/helper-compilation-targets</find>
|
|
362
|
+
<find>babel-loader</find>
|
|
363
|
+
<find>loader-utils</find>
|
|
364
|
+
<find>json5</find>
|
|
365
|
+
<find>ts-loader</find>
|
|
366
|
+
<find>semver</find>
|
|
367
|
+
<find>@babel/helper-define-polyfill-provider</find>
|
|
253
368
|
<find>TypesetSvgAndAscii</find>
|
|
254
|
-
<find>outMath</find>
|
|
255
|
-
<find>MathJax</find>
|
|
256
369
|
<find>TexConvert</find>
|
|
257
370
|
<find>Tabular parse error</find>
|
|
258
|
-
<find>
|
|
259
|
-
<find>
|
|
260
|
-
<find>
|
|
261
|
-
<find>
|
|
371
|
+
<find>CheckParseError</find>
|
|
372
|
+
<find>attrSet</find>
|
|
373
|
+
<find>addPositionsToTokens</find>
|
|
374
|
+
<find>pars</find>
|
|
375
|
+
<find>error</find>
|
|
376
|
+
<find>enum</find>
|
|
377
|
+
<find>OuterDataError</find>
|
|
378
|
+
<find>include_error</find>
|
|
379
|
+
<find>mathEquation</find>
|
|
380
|
+
<find>options.renderingErrors</find>
|
|
381
|
+
<find>empty</find>
|
|
382
|
+
<find>isEmpty</find>
|
|
383
|
+
<find>equation_math_not_number</find>
|
|
384
|
+
<find>console.log</find>
|
|
385
|
+
<find>console</find>
|
|
386
|
+
<find>hideRenderingErrors</find>
|
|
262
387
|
</findStrings>
|
|
263
388
|
<replaceStrings>
|
|
264
389
|
<replace>MJSimple</replace>
|
|
@@ -288,18 +413,18 @@
|
|
|
288
413
|
<dir>$PROJECT_DIR$/node_modules/markdown-it-emoji/lib</dir>
|
|
289
414
|
<dir>$PROJECT_DIR$/src/markdown/md-block-rule</dir>
|
|
290
415
|
<dir>$PROJECT_DIR$/src/styles</dir>
|
|
291
|
-
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
|
|
292
416
|
<dir>$PROJECT_DIR$/src/mathjax/serialized-ascii</dir>
|
|
293
417
|
<dir>$PROJECT_DIR$/src/mathjax</dir>
|
|
294
418
|
<dir>$PROJECT_DIR$/tests/_data</dir>
|
|
295
419
|
<dir>$PROJECT_DIR$/tests/_data/_ascii</dir>
|
|
296
|
-
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts</dir>
|
|
297
420
|
<dir>$PROJECT_DIR$/src/components</dir>
|
|
298
|
-
<dir>$PROJECT_DIR$/src/markdown</dir>
|
|
299
|
-
<dir>$PROJECT_DIR$/tests</dir>
|
|
300
421
|
<dir>$PROJECT_DIR$/lib</dir>
|
|
301
422
|
<dir>$PROJECT_DIR$/es5</dir>
|
|
423
|
+
<dir>$PROJECT_DIR$/src/markdown</dir>
|
|
424
|
+
<dir>$PROJECT_DIR$/node_modules/mathjax-full/ts</dir>
|
|
425
|
+
<dir>$PROJECT_DIR$/tests</dir>
|
|
302
426
|
<dir>$PROJECT_DIR$/src</dir>
|
|
427
|
+
<dir>$PROJECT_DIR$/node_modules/markdown-it/lib</dir>
|
|
303
428
|
</dirStrings>
|
|
304
429
|
</component>
|
|
305
430
|
<component name="Git.Settings">
|
|
@@ -308,20 +433,11 @@
|
|
|
308
433
|
<component name="IdeDocumentHistory">
|
|
309
434
|
<option name="CHANGED_PATHS">
|
|
310
435
|
<list>
|
|
311
|
-
<option value="$PROJECT_DIR$/tests/_data/_ascii/_asciiSpace.js" />
|
|
312
|
-
<option value="$PROJECT_DIR$/tests/_data/_ascii/_ascii_vertical_math.js" />
|
|
313
|
-
<option value="$PROJECT_DIR$/tests/_data/_ascii/_asciiMore.js" />
|
|
314
|
-
<option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/common.ts" />
|
|
315
|
-
<option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/handlers.ts" />
|
|
316
|
-
<option value="$PROJECT_DIR$/src/mathjax/serialized-ascii/index.ts" />
|
|
317
|
-
<option value="$PROJECT_DIR$/src/markdown/rules.ts" />
|
|
318
|
-
<option value="$PROJECT_DIR$/src/markdown/md-inline-rule/underline.ts" />
|
|
319
436
|
<option value="$PROJECT_DIR$/src/markdown/md-renderer-rules/underline.ts" />
|
|
320
437
|
<option value="$PROJECT_DIR$/src/markdown/mdPluginText.ts" />
|
|
321
438
|
<option value="$PROJECT_DIR$/src/test.js" />
|
|
322
439
|
<option value="$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts" />
|
|
323
440
|
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/sub-math.ts" />
|
|
324
|
-
<option value="$PROJECT_DIR$/src/markdown/index.ts" />
|
|
325
441
|
<option value="$PROJECT_DIR$/src/markdown/utils.ts" />
|
|
326
442
|
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/renewcommand.ts" />
|
|
327
443
|
<option value="$PROJECT_DIR$/src/styles/index.ts" />
|
|
@@ -350,15 +466,24 @@
|
|
|
350
466
|
<option value="$PROJECT_DIR$/examples/react-app/sctict-mode/package.json" />
|
|
351
467
|
<option value="$PROJECT_DIR$/examples/react-app/sctict-mode/src/App.js" />
|
|
352
468
|
<option value="$PROJECT_DIR$/examples/react-app/sctict-mode/public/index.html" />
|
|
353
|
-
<option value="$PROJECT_DIR$/package.json" />
|
|
354
469
|
<option value="$PROJECT_DIR$/src/markdown/dom-adaptor/index.ts" />
|
|
355
470
|
<option value="$PROJECT_DIR$/examples/html/content-mmd-to-html.html" />
|
|
356
471
|
<option value="$PROJECT_DIR$/examples/app.js" />
|
|
357
472
|
<option value="$PROJECT_DIR$/node_modules/domino/lib/sloppy.js" />
|
|
473
|
+
<option value="$PROJECT_DIR$/tsconfig.json" />
|
|
474
|
+
<option value="$PROJECT_DIR$/src/markdown/mdHighlightCodePlugin.ts" />
|
|
475
|
+
<option value="$PROJECT_DIR$/package.json" />
|
|
476
|
+
<option value="$PROJECT_DIR$/.circleci/config.yml" />
|
|
477
|
+
<option value="$PROJECT_DIR$/src/markdown/index.ts" />
|
|
358
478
|
<option value="$PROJECT_DIR$/src/mathpix-markdown-model/index.ts" />
|
|
359
|
-
<option value="$PROJECT_DIR$/src/markdown/
|
|
479
|
+
<option value="$PROJECT_DIR$/src/components/mathpix-markdown/index.tsx" />
|
|
360
480
|
<option value="$PROJECT_DIR$/src/mathjax/index.ts" />
|
|
361
|
-
<option value="$PROJECT_DIR
|
|
481
|
+
<option value="$PROJECT_DIR$/src/markdown/mathpix-markdown-plugins.tsx" />
|
|
482
|
+
<option value="$PROJECT_DIR$/src/index.tsx" />
|
|
483
|
+
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts" />
|
|
484
|
+
<option value="$PROJECT_DIR$/src/markdown/mdPluginRaw.ts" />
|
|
485
|
+
<option value="$PROJECT_DIR$/src/markdown/md-block-rule/parse-error.ts" />
|
|
486
|
+
<option value="$PROJECT_DIR$/README.md" />
|
|
362
487
|
</list>
|
|
363
488
|
</option>
|
|
364
489
|
</component>
|
|
@@ -388,11 +513,11 @@
|
|
|
388
513
|
<path value="$PROJECT_DIR$/package.json" />
|
|
389
514
|
</packageJsonPaths>
|
|
390
515
|
</component>
|
|
391
|
-
<component name="ProjectFrameBounds">
|
|
392
|
-
<option name="x" value="
|
|
393
|
-
<option name="y" value="
|
|
394
|
-
<option name="width" value="
|
|
395
|
-
<option name="height" value="
|
|
516
|
+
<component name="ProjectFrameBounds" fullScreen="true">
|
|
517
|
+
<option name="x" value="-154" />
|
|
518
|
+
<option name="y" value="-1080" />
|
|
519
|
+
<option name="width" value="1920" />
|
|
520
|
+
<option name="height" value="1080" />
|
|
396
521
|
</component>
|
|
397
522
|
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
|
398
523
|
<component name="ProjectView">
|
|
@@ -400,6 +525,7 @@
|
|
|
400
525
|
<foldersAlwaysOnTop value="true" />
|
|
401
526
|
</navigator>
|
|
402
527
|
<panes>
|
|
528
|
+
<pane id="Scope" />
|
|
403
529
|
<pane id="ProjectPane">
|
|
404
530
|
<subPane>
|
|
405
531
|
<expand>
|
|
@@ -415,26 +541,65 @@
|
|
|
415
541
|
<path>
|
|
416
542
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
417
543
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
418
|
-
<item name="
|
|
544
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
545
|
+
</path>
|
|
546
|
+
<path>
|
|
547
|
+
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
548
|
+
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
549
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
550
|
+
<item name="components" type="462c0819:PsiDirectoryNode" />
|
|
551
|
+
</path>
|
|
552
|
+
<path>
|
|
553
|
+
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
554
|
+
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
555
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
556
|
+
<item name="components" type="462c0819:PsiDirectoryNode" />
|
|
557
|
+
<item name="mathpix-markdown" type="462c0819:PsiDirectoryNode" />
|
|
558
|
+
</path>
|
|
559
|
+
<path>
|
|
560
|
+
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
561
|
+
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
562
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
563
|
+
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
564
|
+
</path>
|
|
565
|
+
<path>
|
|
566
|
+
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
567
|
+
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
568
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
569
|
+
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
570
|
+
<item name="md-block-rule" type="462c0819:PsiDirectoryNode" />
|
|
419
571
|
</path>
|
|
420
572
|
<path>
|
|
421
573
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
422
574
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
423
|
-
<item name="
|
|
424
|
-
<item name="
|
|
575
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
576
|
+
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
577
|
+
<item name="md-block-rule" type="462c0819:PsiDirectoryNode" />
|
|
578
|
+
<item name="begin-tabular" type="462c0819:PsiDirectoryNode" />
|
|
425
579
|
</path>
|
|
426
580
|
<path>
|
|
427
581
|
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
428
582
|
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
429
|
-
<item name="
|
|
430
|
-
<item name="
|
|
431
|
-
<item name="
|
|
583
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
584
|
+
<item name="markdown" type="462c0819:PsiDirectoryNode" />
|
|
585
|
+
<item name="md-theorem" type="462c0819:PsiDirectoryNode" />
|
|
586
|
+
</path>
|
|
587
|
+
<path>
|
|
588
|
+
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
589
|
+
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
590
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
591
|
+
<item name="mathjax" type="462c0819:PsiDirectoryNode" />
|
|
592
|
+
</path>
|
|
593
|
+
<path>
|
|
594
|
+
<item name="mathpix-markdown-it" type="b2602c69:ProjectViewProjectNode" />
|
|
595
|
+
<item name="mathpix-markdown-it" type="462c0819:PsiDirectoryNode" />
|
|
596
|
+
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
597
|
+
<item name="mathpix-markdown-model" type="462c0819:PsiDirectoryNode" />
|
|
432
598
|
</path>
|
|
433
599
|
</expand>
|
|
434
600
|
<select />
|
|
435
601
|
</subPane>
|
|
436
602
|
</pane>
|
|
437
|
-
<pane id="Scope" />
|
|
438
603
|
</panes>
|
|
439
604
|
</component>
|
|
440
605
|
<component name="PropertiesComponent">
|
|
@@ -730,12 +895,15 @@
|
|
|
730
895
|
<workItem from="1688130633736" duration="1376000" />
|
|
731
896
|
<workItem from="1688368914968" duration="13617000" />
|
|
732
897
|
<workItem from="1688391156272" duration="1581000" />
|
|
733
|
-
<workItem from="1688394185300" duration="
|
|
898
|
+
<workItem from="1688394185300" duration="8805000" />
|
|
899
|
+
<workItem from="1688485379763" duration="13925000" />
|
|
900
|
+
<workItem from="1688553642421" duration="19877000" />
|
|
901
|
+
<workItem from="1688637326435" duration="264000" />
|
|
734
902
|
</task>
|
|
735
903
|
<servers />
|
|
736
904
|
</component>
|
|
737
905
|
<component name="TimeTrackingManager">
|
|
738
|
-
<option name="totallyTimeSpent" value="
|
|
906
|
+
<option name="totallyTimeSpent" value="2640597000" />
|
|
739
907
|
</component>
|
|
740
908
|
<component name="TodoView">
|
|
741
909
|
<todo-panel id="selected-file">
|
|
@@ -747,9 +915,10 @@
|
|
|
747
915
|
</todo-panel>
|
|
748
916
|
</component>
|
|
749
917
|
<component name="ToolWindowManager">
|
|
750
|
-
<frame x="
|
|
918
|
+
<frame x="-154" y="-1080" width="1920" height="1080" extended-state="0" />
|
|
919
|
+
<editor active="true" />
|
|
751
920
|
<layout>
|
|
752
|
-
<window_info content_ui="combo" id="Project" order="0" sideWeight="0.49395162" visible="true" weight="0.
|
|
921
|
+
<window_info content_ui="combo" id="Project" order="0" sideWeight="0.49395162" visible="true" weight="0.20115851" />
|
|
753
922
|
<window_info id="Structure" order="1" sideWeight="0.5060484" side_tool="true" weight="0.21637055" />
|
|
754
923
|
<window_info id="npm" order="2" side_tool="true" />
|
|
755
924
|
<window_info id="DB Browser" order="3" />
|
|
@@ -768,7 +937,7 @@
|
|
|
768
937
|
<window_info anchor="bottom" id="Version Control" order="9" show_stripe_button="false" />
|
|
769
938
|
<window_info anchor="bottom" id="DB Execution Console" order="10" />
|
|
770
939
|
<window_info anchor="bottom" id="TypeScript" order="11" />
|
|
771
|
-
<window_info active="true" anchor="bottom" id="Terminal" order="12" sideWeight="0.4993515" visible="true" weight="0.
|
|
940
|
+
<window_info active="true" anchor="bottom" id="Terminal" order="12" sideWeight="0.4993515" visible="true" weight="0.4821782" />
|
|
772
941
|
<window_info anchor="bottom" id="Event Log" order="13" sideWeight="0.5006485" side_tool="true" weight="0.24063565" />
|
|
773
942
|
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
|
774
943
|
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
|
@@ -812,7 +981,7 @@
|
|
|
812
981
|
<breakpoints>
|
|
813
982
|
<line-breakpoint enabled="true" type="javascript">
|
|
814
983
|
<url>file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts</url>
|
|
815
|
-
<line>
|
|
984
|
+
<line>361</line>
|
|
816
985
|
<option name="timeStamp" value="16" />
|
|
817
986
|
</line-breakpoint>
|
|
818
987
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -876,7 +1045,7 @@
|
|
|
876
1045
|
</line-breakpoint>
|
|
877
1046
|
<line-breakpoint enabled="true" type="javascript">
|
|
878
1047
|
<url>file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts</url>
|
|
879
|
-
<line>
|
|
1048
|
+
<line>1104</line>
|
|
880
1049
|
<option name="timeStamp" value="36" />
|
|
881
1050
|
</line-breakpoint>
|
|
882
1051
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -901,7 +1070,7 @@
|
|
|
901
1070
|
</line-breakpoint>
|
|
902
1071
|
<line-breakpoint enabled="true" type="javascript">
|
|
903
1072
|
<url>file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts</url>
|
|
904
|
-
<line>
|
|
1073
|
+
<line>73</line>
|
|
905
1074
|
<option name="timeStamp" value="43" />
|
|
906
1075
|
</line-breakpoint>
|
|
907
1076
|
<line-breakpoint enabled="true" type="javascript">
|
|
@@ -937,199 +1106,242 @@
|
|
|
937
1106
|
</breakpoint-manager>
|
|
938
1107
|
</component>
|
|
939
1108
|
<component name="editorHistoryManager">
|
|
940
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1109
|
+
<entry file="file://$PROJECT_DIR$/examples/react-app/sctict-mode/build/static/js/main.62ab2cbb.js" />
|
|
1110
|
+
<entry file="file://$PROJECT_DIR$/examples/react-app/sctict-mode/build/asset-manifest.json" />
|
|
1111
|
+
<entry file="file://$PROJECT_DIR$/examples/react-app/sctict-mode/craco.config.js" />
|
|
1112
|
+
<entry file="file://$PROJECT_DIR$/examples/react-app/sctict-mode/node_modules/domino/lib/sloppy.js" />
|
|
1113
|
+
<entry file="file://$PROJECT_DIR$/examples/react-app/sctict-mode/package.json" />
|
|
1114
|
+
<entry file="file://$PROJECT_DIR$/examples/react-app/sctict-mode/build/index.html" />
|
|
1115
|
+
<entry file="file://$PROJECT_DIR$/examples/react-app/sctict-mode/public/index.html" />
|
|
1116
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/dom-adaptor/index.ts">
|
|
941
1117
|
<provider selected="true" editor-type-id="text-editor">
|
|
942
|
-
<state relative-caret-position="
|
|
943
|
-
<caret line="
|
|
1118
|
+
<state relative-caret-position="195">
|
|
1119
|
+
<caret line="13" column="17" selection-start-line="13" selection-start-column="17" selection-end-line="13" selection-end-column="17" />
|
|
944
1120
|
</state>
|
|
945
1121
|
</provider>
|
|
946
1122
|
</entry>
|
|
947
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1123
|
+
<entry file="file://$PROJECT_DIR$/examples/app.js">
|
|
948
1124
|
<provider selected="true" editor-type-id="text-editor">
|
|
949
|
-
<state relative-caret-position="
|
|
950
|
-
<caret line="
|
|
1125
|
+
<state relative-caret-position="90">
|
|
1126
|
+
<caret line="6" selection-start-line="6" selection-end-line="6" />
|
|
951
1127
|
</state>
|
|
952
1128
|
</provider>
|
|
953
1129
|
</entry>
|
|
954
|
-
<entry file="file://$PROJECT_DIR$/
|
|
955
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
956
|
-
<state>
|
|
957
|
-
<
|
|
958
|
-
|
|
959
|
-
</folding>
|
|
1130
|
+
<entry file="file://$PROJECT_DIR$/examples/html/content-mmd-to-html.html.md">
|
|
1131
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
1132
|
+
<state split_layout="SPLIT">
|
|
1133
|
+
<first_editor />
|
|
1134
|
+
<second_editor />
|
|
960
1135
|
</state>
|
|
961
1136
|
</provider>
|
|
962
1137
|
</entry>
|
|
963
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1138
|
+
<entry file="file://$PROJECT_DIR$/examples/html/content-mmd-to-html.html">
|
|
964
1139
|
<provider selected="true" editor-type-id="text-editor">
|
|
965
|
-
<state relative-caret-position="
|
|
966
|
-
<caret line="
|
|
1140
|
+
<state relative-caret-position="1590">
|
|
1141
|
+
<caret line="106" column="17" selection-start-line="106" selection-start-column="17" selection-end-line="106" selection-end-column="17" />
|
|
967
1142
|
</state>
|
|
968
1143
|
</provider>
|
|
969
1144
|
</entry>
|
|
970
|
-
<entry file="file://$PROJECT_DIR
|
|
1145
|
+
<entry file="file://$PROJECT_DIR$/.npmignore">
|
|
971
1146
|
<provider selected="true" editor-type-id="text-editor" />
|
|
972
1147
|
</entry>
|
|
973
|
-
<entry file="file://$PROJECT_DIR
|
|
1148
|
+
<entry file="file://$PROJECT_DIR$/.yarnignore">
|
|
1149
|
+
<provider selected="true" editor-type-id="text-editor" />
|
|
1150
|
+
</entry>
|
|
1151
|
+
<entry file="file://$PROJECT_DIR$/node_modules/domino/test/.npmignore" />
|
|
1152
|
+
<entry file="file://$PROJECT_DIR$/node_modules/domino/.npmrc" />
|
|
1153
|
+
<entry file="file://$PROJECT_DIR$/node_modules/domino/.mocharc.json" />
|
|
1154
|
+
<entry file="file://$PROJECT_DIR$/node_modules/domino/.gitignore" />
|
|
1155
|
+
<entry file="file://$PROJECT_DIR$/node_modules/domino/.gitmodules" />
|
|
1156
|
+
<entry file="file://$PROJECT_DIR$/node_modules/domino/.jshintignore" />
|
|
1157
|
+
<entry file="file://$PROJECT_DIR$/node_modules/domino/.jshintrc" />
|
|
1158
|
+
<entry file="file://$PROJECT_DIR$/node_modules/domino/.travis.yml" />
|
|
1159
|
+
<entry file="file://$PROJECT_DIR$/node_modules/domino/package.json">
|
|
1160
|
+
<provider selected="true" editor-type-id="text-editor" />
|
|
1161
|
+
</entry>
|
|
1162
|
+
<entry file="file://$PROJECT_DIR$/node_modules/domino/lib/sloppy.js">
|
|
974
1163
|
<provider selected="true" editor-type-id="text-editor">
|
|
975
|
-
<state relative-caret-position="
|
|
976
|
-
<caret line="
|
|
1164
|
+
<state relative-caret-position="255">
|
|
1165
|
+
<caret line="19" selection-start-line="19" selection-end-line="19" />
|
|
977
1166
|
</state>
|
|
978
1167
|
</provider>
|
|
979
1168
|
</entry>
|
|
980
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1169
|
+
<entry file="file://$PROJECT_DIR$/tsconfig.json">
|
|
981
1170
|
<provider selected="true" editor-type-id="text-editor">
|
|
982
|
-
<state relative-caret-position="
|
|
983
|
-
<caret line="
|
|
1171
|
+
<state relative-caret-position="240">
|
|
1172
|
+
<caret line="16" selection-start-line="19" selection-start-column="9" selection-end-line="19" selection-end-column="27" />
|
|
984
1173
|
</state>
|
|
985
1174
|
</provider>
|
|
986
1175
|
</entry>
|
|
987
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1176
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/serialized-ascii/index.ts">
|
|
988
1177
|
<provider selected="true" editor-type-id="text-editor">
|
|
989
|
-
<state relative-caret-position="
|
|
990
|
-
<caret line="
|
|
1178
|
+
<state relative-caret-position="270">
|
|
1179
|
+
<caret line="18" column="32" selection-start-line="18" selection-start-column="25" selection-end-line="18" selection-end-column="32" />
|
|
991
1180
|
<folding>
|
|
992
1181
|
<element signature="e#0#70#0" expanded="true" />
|
|
993
|
-
<element signature="n#style#0;n#ulEXTERNAL_FRAGMENT#0;n#li#0;n#!!top" expanded="true" />
|
|
994
|
-
<element signature="n#style#0;n#ulEXTERNAL_FRAGMENT#0;n#!!top" expanded="true" />
|
|
995
|
-
<element signature="n#style#0;n#olEXTERNAL_FRAGMENT#0;n#!!top" expanded="true" />
|
|
996
|
-
<element signature="n#style#0;n#olEXTERNAL_FRAGMENT#0;n#!!top" expanded="true" />
|
|
997
|
-
<element signature="n#style#0;n#liEXTERNAL_FRAGMENT#0;n#!!top" expanded="true" />
|
|
998
1182
|
</folding>
|
|
999
1183
|
</state>
|
|
1000
1184
|
</provider>
|
|
1001
1185
|
</entry>
|
|
1002
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1186
|
+
<entry file="file://$PROJECT_DIR$/node_modules/highlight.js/lib/languages/julia-repl.js">
|
|
1003
1187
|
<provider selected="true" editor-type-id="text-editor">
|
|
1004
|
-
<state relative-caret-position="
|
|
1005
|
-
<caret line="
|
|
1188
|
+
<state relative-caret-position="465">
|
|
1189
|
+
<caret line="31" selection-start-line="31" selection-end-line="31" />
|
|
1006
1190
|
<folding>
|
|
1007
|
-
<element signature="
|
|
1191
|
+
<element signature="n#!!doc" expanded="true" />
|
|
1008
1192
|
</folding>
|
|
1009
1193
|
</state>
|
|
1010
1194
|
</provider>
|
|
1011
1195
|
</entry>
|
|
1012
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1013
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
1196
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdHighlightCodePlugin.ts">
|
|
1197
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1198
|
+
<state>
|
|
1199
|
+
<caret column="30" selection-start-column="30" selection-end-column="30" />
|
|
1200
|
+
</state>
|
|
1201
|
+
</provider>
|
|
1014
1202
|
</entry>
|
|
1015
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1203
|
+
<entry file="file://$PROJECT_DIR$/node_modules/highlight.js/types/index.d.ts">
|
|
1016
1204
|
<provider selected="true" editor-type-id="text-editor">
|
|
1017
|
-
<state relative-caret-position="
|
|
1018
|
-
<caret line="
|
|
1205
|
+
<state relative-caret-position="3960">
|
|
1206
|
+
<caret line="264" column="15" selection-start-line="264" selection-start-column="15" selection-end-line="264" selection-end-column="15" />
|
|
1019
1207
|
</state>
|
|
1020
1208
|
</provider>
|
|
1021
1209
|
</entry>
|
|
1022
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1023
|
-
<entry file="file://$PROJECT_DIR$/tsconfig.json">
|
|
1210
|
+
<entry file="file://$PROJECT_DIR$/node_modules/highlight.js/package.json">
|
|
1024
1211
|
<provider selected="true" editor-type-id="text-editor" />
|
|
1025
1212
|
</entry>
|
|
1026
1213
|
<entry file="file://$PROJECT_DIR$/webpack.config.js">
|
|
1027
1214
|
<provider selected="true" editor-type-id="text-editor">
|
|
1028
|
-
<state relative-caret-position="
|
|
1215
|
+
<state relative-caret-position="150">
|
|
1029
1216
|
<caret line="10" column="9" selection-start-line="10" selection-start-column="2" selection-end-line="10" selection-end-column="9" />
|
|
1030
1217
|
</state>
|
|
1031
1218
|
</provider>
|
|
1032
1219
|
</entry>
|
|
1033
|
-
<entry file="file://$PROJECT_DIR
|
|
1034
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
1220
|
+
<entry file="file://$PROJECT_DIR$/.circleci/config.yml">
|
|
1221
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1222
|
+
<state relative-caret-position="210">
|
|
1223
|
+
<caret line="14" column="21" selection-start-line="14" selection-start-column="21" selection-end-line="14" selection-end-column="21" />
|
|
1224
|
+
</state>
|
|
1225
|
+
</provider>
|
|
1035
1226
|
</entry>
|
|
1036
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1227
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/mathJaxConfig.ts">
|
|
1037
1228
|
<provider selected="true" editor-type-id="text-editor">
|
|
1038
|
-
<state relative-caret-position="
|
|
1039
|
-
<caret line="
|
|
1040
|
-
<folding>
|
|
1041
|
-
<element signature="e#0#31#0" expanded="true" />
|
|
1042
|
-
<element signature="e#1114#1557#0" expanded="true" />
|
|
1043
|
-
</folding>
|
|
1229
|
+
<state relative-caret-position="570">
|
|
1230
|
+
<caret line="38" column="6" selection-start-line="38" selection-start-column="6" selection-end-line="38" selection-end-column="6" />
|
|
1044
1231
|
</state>
|
|
1045
1232
|
</provider>
|
|
1046
1233
|
</entry>
|
|
1047
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
<entry file="file://$PROJECT_DIR$/examples/react-app/sctict-mode/public/index.html" />
|
|
1056
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
|
1057
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
1058
|
-
<state split_layout="SPLIT">
|
|
1059
|
-
<first_editor />
|
|
1060
|
-
<second_editor />
|
|
1234
|
+
<entry file="file://$PROJECT_DIR$/src/components/mathpix-markdown/index.tsx">
|
|
1235
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1236
|
+
<state relative-caret-position="-478">
|
|
1237
|
+
<caret line="5" column="14" selection-start-line="5" selection-start-column="14" selection-end-line="5" selection-end-column="14" />
|
|
1238
|
+
<folding>
|
|
1239
|
+
<element signature="e#2358#2754#0" expanded="true" />
|
|
1240
|
+
<element signature="e#2545#2735#0" expanded="true" />
|
|
1241
|
+
</folding>
|
|
1061
1242
|
</state>
|
|
1062
1243
|
</provider>
|
|
1063
1244
|
</entry>
|
|
1064
|
-
<entry file="file://$PROJECT_DIR$/src/markdown
|
|
1245
|
+
<entry file="file://$PROJECT_DIR$/src/mathpix-markdown-model/index.ts">
|
|
1065
1246
|
<provider selected="true" editor-type-id="text-editor">
|
|
1066
|
-
<state relative-caret-position="
|
|
1067
|
-
<caret line="
|
|
1247
|
+
<state relative-caret-position="2370">
|
|
1248
|
+
<caret line="158" column="2" selection-start-line="158" selection-start-column="2" selection-end-line="158" selection-end-column="2" />
|
|
1249
|
+
<folding>
|
|
1250
|
+
<element signature="e#0#45#0" expanded="true" />
|
|
1251
|
+
<element signature="e#556#614#0" expanded="true" />
|
|
1252
|
+
</folding>
|
|
1068
1253
|
</state>
|
|
1069
1254
|
</provider>
|
|
1070
1255
|
</entry>
|
|
1071
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1256
|
+
<entry file="file://$PROJECT_DIR$/src/index.tsx">
|
|
1072
1257
|
<provider selected="true" editor-type-id="text-editor">
|
|
1073
|
-
<state relative-caret-position="
|
|
1074
|
-
<caret line="
|
|
1258
|
+
<state relative-caret-position="600">
|
|
1259
|
+
<caret line="40" selection-start-line="40" selection-end-line="40" />
|
|
1260
|
+
<folding>
|
|
1261
|
+
<element signature="e#0#56#0" expanded="true" />
|
|
1262
|
+
</folding>
|
|
1075
1263
|
</state>
|
|
1076
1264
|
</provider>
|
|
1077
1265
|
</entry>
|
|
1078
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1079
|
-
<provider selected="true" editor-type-id="
|
|
1080
|
-
<state
|
|
1081
|
-
<
|
|
1082
|
-
<
|
|
1266
|
+
<entry file="file://$PROJECT_DIR$/src/mathjax/index.ts">
|
|
1267
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1268
|
+
<state relative-caret-position="2385">
|
|
1269
|
+
<caret line="159" column="22" selection-start-line="159" selection-start-column="22" selection-end-line="159" selection-end-column="22" />
|
|
1270
|
+
<folding>
|
|
1271
|
+
<element signature="e#0#50#0" expanded="true" />
|
|
1272
|
+
</folding>
|
|
1083
1273
|
</state>
|
|
1084
1274
|
</provider>
|
|
1085
1275
|
</entry>
|
|
1086
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1276
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mathpix-markdown-plugins.tsx">
|
|
1087
1277
|
<provider selected="true" editor-type-id="text-editor">
|
|
1088
|
-
<state relative-caret-position="
|
|
1089
|
-
<caret line="
|
|
1278
|
+
<state relative-caret-position="15">
|
|
1279
|
+
<caret line="1" column="43" selection-start-line="1" selection-start-column="43" selection-end-line="1" selection-end-column="43" />
|
|
1280
|
+
<folding>
|
|
1281
|
+
<element signature="e#0#41#0" expanded="true" />
|
|
1282
|
+
</folding>
|
|
1090
1283
|
</state>
|
|
1091
1284
|
</provider>
|
|
1092
1285
|
</entry>
|
|
1093
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1286
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginRaw.ts">
|
|
1094
1287
|
<provider selected="true" editor-type-id="text-editor">
|
|
1095
|
-
<state relative-caret-position="
|
|
1096
|
-
<caret line="
|
|
1288
|
+
<state relative-caret-position="10650">
|
|
1289
|
+
<caret line="721" selection-start-line="721" selection-end-line="721" />
|
|
1097
1290
|
<folding>
|
|
1098
|
-
<element signature="e#0#
|
|
1099
|
-
<element signature="e#556#614#0" expanded="true" />
|
|
1291
|
+
<element signature="e#0#36#0" expanded="true" />
|
|
1100
1292
|
</folding>
|
|
1101
1293
|
</state>
|
|
1102
1294
|
</provider>
|
|
1103
1295
|
</entry>
|
|
1104
|
-
<entry file="file://$PROJECT_DIR$/src/
|
|
1296
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/index.ts">
|
|
1105
1297
|
<provider selected="true" editor-type-id="text-editor">
|
|
1106
|
-
<state relative-caret-position="
|
|
1107
|
-
<caret line="
|
|
1298
|
+
<state relative-caret-position="390">
|
|
1299
|
+
<caret line="26" column="14" selection-start-line="26" selection-start-column="14" selection-end-line="26" selection-end-column="14" />
|
|
1108
1300
|
<folding>
|
|
1109
|
-
<element signature="e#0#
|
|
1301
|
+
<element signature="e#0#87#0" expanded="true" />
|
|
1110
1302
|
</folding>
|
|
1111
1303
|
</state>
|
|
1112
1304
|
</provider>
|
|
1113
1305
|
</entry>
|
|
1114
1306
|
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/parse-error.ts">
|
|
1115
1307
|
<provider selected="true" editor-type-id="text-editor">
|
|
1116
|
-
<state relative-caret-position="
|
|
1117
|
-
<caret line="
|
|
1308
|
+
<state relative-caret-position="570">
|
|
1309
|
+
<caret line="47" column="43" selection-start-line="47" selection-start-column="43" selection-end-line="47" selection-end-column="43" />
|
|
1118
1310
|
</state>
|
|
1119
1311
|
</provider>
|
|
1120
1312
|
</entry>
|
|
1121
|
-
<entry file="file://$PROJECT_DIR$/src/markdown/
|
|
1313
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/parse-tabular.ts">
|
|
1314
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1315
|
+
<state>
|
|
1316
|
+
<folding>
|
|
1317
|
+
<element signature="e#0#40#0" expanded="true" />
|
|
1318
|
+
</folding>
|
|
1319
|
+
</state>
|
|
1320
|
+
</provider>
|
|
1321
|
+
</entry>
|
|
1322
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-block-rule/begin-tabular/index.ts">
|
|
1122
1323
|
<provider selected="true" editor-type-id="text-editor">
|
|
1123
|
-
<state relative-caret-position="
|
|
1124
|
-
<caret line="
|
|
1324
|
+
<state relative-caret-position="3600">
|
|
1325
|
+
<caret line="240" column="11" selection-start-line="240" selection-start-column="11" selection-end-line="240" selection-end-column="11" />
|
|
1125
1326
|
<folding>
|
|
1126
|
-
<element signature="e#0#
|
|
1327
|
+
<element signature="e#0#47#0" expanded="true" />
|
|
1127
1328
|
</folding>
|
|
1128
1329
|
</state>
|
|
1129
1330
|
</provider>
|
|
1130
1331
|
</entry>
|
|
1131
1332
|
<entry file="file://$PROJECT_DIR$/examples/react-app/use-components/public/manifest.json">
|
|
1132
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
1333
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1334
|
+
<state relative-caret-position="90">
|
|
1335
|
+
<caret line="6" column="41" selection-start-line="6" selection-start-column="41" selection-end-line="6" selection-end-column="41" />
|
|
1336
|
+
</state>
|
|
1337
|
+
</provider>
|
|
1338
|
+
</entry>
|
|
1339
|
+
<entry file="file://$PROJECT_DIR$/node_modules/highlight.js/lib/index.js">
|
|
1340
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1341
|
+
<state relative-caret-position="1335">
|
|
1342
|
+
<caret line="89" column="61" selection-start-line="89" selection-start-column="61" selection-end-line="89" selection-end-column="61" />
|
|
1343
|
+
</state>
|
|
1344
|
+
</provider>
|
|
1133
1345
|
</entry>
|
|
1134
1346
|
<entry file="file://$PROJECT_DIR$/examples/react-app/use-components/public/index.html">
|
|
1135
1347
|
<provider selected="true" editor-type-id="text-editor">
|
|
@@ -1138,66 +1350,70 @@
|
|
|
1138
1350
|
</state>
|
|
1139
1351
|
</provider>
|
|
1140
1352
|
</entry>
|
|
1141
|
-
<entry file="file://$PROJECT_DIR
|
|
1142
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
1143
|
-
</entry>
|
|
1144
|
-
<entry file="file://$PROJECT_DIR$/.yarnignore">
|
|
1145
|
-
<provider selected="true" editor-type-id="text-editor" />
|
|
1146
|
-
</entry>
|
|
1147
|
-
<entry file="file://$PROJECT_DIR$/package.json">
|
|
1353
|
+
<entry file="file://$PROJECT_DIR$/node_modules/highlight.js/lib/languages/javascript.js">
|
|
1148
1354
|
<provider selected="true" editor-type-id="text-editor">
|
|
1149
|
-
<state relative-caret-position="
|
|
1150
|
-
<caret line="
|
|
1355
|
+
<state relative-caret-position="9465">
|
|
1356
|
+
<caret line="631" column="22" selection-start-line="631" selection-start-column="22" selection-end-line="631" selection-end-column="22" />
|
|
1151
1357
|
</state>
|
|
1152
1358
|
</provider>
|
|
1153
1359
|
</entry>
|
|
1154
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1360
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/mdPluginText.ts">
|
|
1155
1361
|
<provider selected="true" editor-type-id="text-editor">
|
|
1156
|
-
<state relative-caret-position="
|
|
1157
|
-
<caret line="
|
|
1362
|
+
<state relative-caret-position="3300">
|
|
1363
|
+
<caret line="227" column="13" selection-start-line="227" selection-start-column="13" selection-end-line="227" selection-end-column="13" />
|
|
1158
1364
|
</state>
|
|
1159
1365
|
</provider>
|
|
1160
1366
|
</entry>
|
|
1161
|
-
<entry file="file://$PROJECT_DIR
|
|
1367
|
+
<entry file="file://$PROJECT_DIR$/src/markdown/md-theorem/block-rule.ts">
|
|
1162
1368
|
<provider selected="true" editor-type-id="text-editor">
|
|
1163
|
-
<state relative-caret-position="
|
|
1164
|
-
<caret line="
|
|
1369
|
+
<state relative-caret-position="166">
|
|
1370
|
+
<caret line="254" column="22" selection-start-line="254" selection-start-column="7" selection-end-line="254" selection-end-column="22" />
|
|
1371
|
+
<folding>
|
|
1372
|
+
<element signature="e#0#40#0" expanded="true" />
|
|
1373
|
+
</folding>
|
|
1165
1374
|
</state>
|
|
1166
1375
|
</provider>
|
|
1167
1376
|
</entry>
|
|
1168
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1169
|
-
<provider selected="true" editor-type-id="text-editor"
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1377
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
1378
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
1379
|
+
<state split_layout="FIRST">
|
|
1380
|
+
<first_editor relative-caret-position="320">
|
|
1381
|
+
<caret line="833" column="54" selection-start-line="833" selection-start-column="54" selection-end-line="833" selection-end-column="54" />
|
|
1382
|
+
<folding>
|
|
1383
|
+
<element signature="e#130#338#0" expanded="true" />
|
|
1384
|
+
<element signature="e#0#31#0" expanded="true" />
|
|
1385
|
+
<element signature="e#598#713#0" expanded="true" />
|
|
1386
|
+
<element signature="e#618#955#0" expanded="true" />
|
|
1387
|
+
<element signature="e#632#852#0" expanded="true" />
|
|
1388
|
+
<element signature="n#style#0;n#mathml#0;n#span#0;n#!!top" expanded="true" />
|
|
1389
|
+
<element signature="n#style#0;n#asciimath#0;n#span#0;n#!!top" expanded="true" />
|
|
1390
|
+
<element signature="n#style#0;n#latex#0;n#span#0;n#!!top" expanded="true" />
|
|
1391
|
+
<element signature="n#style#0;n#tsv#0;n#div#0;n#!!top" expanded="true" />
|
|
1392
|
+
<element signature="n#style#0;n#asciimath#0;n#span#0;n#div#0;n#!!top" expanded="true" />
|
|
1393
|
+
<element signature="n#style#0;n#div#0;n#!!top" expanded="true" />
|
|
1394
|
+
<element signature="n#style#0;n#tsv#0;n#div#0;n#!!top" expanded="true" />
|
|
1395
|
+
<element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#0;n#div#0;n#!!top" expanded="true" />
|
|
1396
|
+
<element signature="e#0#59#0" expanded="true" />
|
|
1397
|
+
<element signature="n#style#0;n#mjx-container#0;n#span#0;n#div#0;n#!!top" expanded="true" />
|
|
1398
|
+
<element signature="n#style#0;n#svg#0;n#mjx-container#0;n#span#0;n#div#0;n#!!top" expanded="true" />
|
|
1399
|
+
<element signature="e#0#121#1" expanded="true" />
|
|
1400
|
+
</folding>
|
|
1401
|
+
</first_editor>
|
|
1402
|
+
<second_editor />
|
|
1403
|
+
</state>
|
|
1404
|
+
</provider>
|
|
1191
1405
|
</entry>
|
|
1192
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1406
|
+
<entry file="file://$PROJECT_DIR$/package.json">
|
|
1193
1407
|
<provider selected="true" editor-type-id="text-editor">
|
|
1194
|
-
<state relative-caret-position="
|
|
1408
|
+
<state relative-caret-position="249">
|
|
1409
|
+
<caret line="55" column="34" selection-start-line="55" selection-start-column="34" selection-end-line="55" selection-end-column="34" />
|
|
1410
|
+
</state>
|
|
1195
1411
|
</provider>
|
|
1196
1412
|
</entry>
|
|
1197
|
-
<entry file="file://$PROJECT_DIR$/
|
|
1413
|
+
<entry file="file://$PROJECT_DIR$/yarn.lock">
|
|
1198
1414
|
<provider selected="true" editor-type-id="text-editor">
|
|
1199
|
-
<state relative-caret-position="
|
|
1200
|
-
<caret line="
|
|
1415
|
+
<state relative-caret-position="-88">
|
|
1416
|
+
<caret line="2065" column="31" selection-start-line="2065" selection-start-column="31" selection-end-line="2065" selection-end-column="31" />
|
|
1201
1417
|
</state>
|
|
1202
1418
|
</provider>
|
|
1203
1419
|
</entry>
|