├── .babelrc ├── .circleci └── config.yml ├── .gitignore ├── .npmignore ├── .yarnignore ├── LICENSE ├── README.md ├── assets ├── mmd-image-properties.webp └── mmd-vscode.png ├── doc ├── ACCESSIBILITY.md ├── icons │ ├── color-icons-render.html │ ├── color-icons.html │ ├── emoji-icons.html │ ├── fa-icons.html │ ├── icons.md │ ├── squared-icons.html │ ├── table-of-icons-render.html │ ├── table-of-icons.html │ └── unicode-icons.html ├── images │ ├── latex-footnotes │ │ ├── latex-footnotes_01.png │ │ ├── latex-footnotes_02.png │ │ ├── latex-footnotes_03.png │ │ └── latex-footnotes_04.png │ ├── latex-underline │ │ ├── latex-underline_01.png │ │ ├── latex-underline_02.png │ │ ├── latex-underline_03.png │ │ ├── latex-underline_04.png │ │ ├── latex-underline_05.png │ │ ├── latex-underline_06.png │ │ └── latex-underline_07.png │ ├── sections │ │ ├── section_01.png │ │ ├── section_02.png │ │ ├── section_03.png │ │ └── section_04.png │ ├── theorem_01.png │ ├── theorem_02.png │ ├── theorem_03.png │ ├── theorem_04.png │ ├── theorem_05.png │ ├── theorem_06.png │ ├── theorem_07.png │ └── theorems_and_proofs.png ├── latex-footnotes.md ├── latex-underline.md ├── sections.md └── theorems.md ├── es5 ├── bundle.js ├── context-menu.js ├── copy-to-clipboard-code.js ├── index.js └── index.js.map ├── examples ├── app.js ├── appPositions.js ├── compare-formats │ ├── README.md │ ├── app.js │ ├── format-cases.txt │ ├── package.json │ ├── result.html │ ├── result.txt │ └── views │ │ └── index.ejs ├── html │ ├── content-mmd-to-html.html │ ├── content-mmd-to-html.html.md │ ├── input-mmd-to-html.html │ └── input-mmd-to-html.html.md ├── mathpix-markdown-it-node-examples │ ├── README.md │ ├── app.js │ ├── conversion │ │ ├── math.js │ │ ├── math_outMath.js │ │ ├── tabular.js │ │ ├── tabular_include_sub_math.js │ │ ├── tabular_not_include_sub_math.js │ │ └── tabular_outMath.js │ ├── data.md │ ├── package.json │ └── views │ │ └── index.ejs ├── nextJS │ ├── README.md │ ├── app │ │ ├── data.js │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── tailwind.config.ts │ └── tsconfig.json └── react-app │ ├── use-components │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── craco.config.js │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── _data.md │ │ └── index.js │ ├── use-markdownToHTML-method │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── form.jsx │ │ ├── index.js │ │ └── style.css │ ├── use-parseMarkdownByHTML-method │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.jsx │ │ ├── form.jsx │ │ ├── index.js │ │ └── style.css │ ├── use-render-method │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.jsx │ │ ├── data.js │ │ ├── index.js │ │ └── style.css │ └── use-toc │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── example-toc.gif │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json │ └── src │ ├── App.jsx │ ├── data.js │ ├── form.jsx │ ├── index.js │ └── style.css ├── lib ├── bundle.d.ts ├── bundle.js ├── bundle.js.map ├── components │ ├── mathpix-loader │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ └── mathpix-markdown │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map ├── contex-menu │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── menu │ │ ├── consts.d.ts │ │ ├── consts.js │ │ ├── consts.js.map │ │ ├── helper.d.ts │ │ ├── helper.js │ │ ├── helper.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── interfaces.d.ts │ │ ├── interfaces.js │ │ ├── interfaces.js.map │ │ ├── menu-item-actions.d.ts │ │ ├── menu-item-actions.js │ │ ├── menu-item-actions.js.map │ │ ├── menu-item.d.ts │ │ ├── menu-item.js │ │ ├── menu-item.js.map │ │ ├── menu-items.d.ts │ │ ├── menu-items.js │ │ └── menu-items.js.map │ ├── styles.d.ts │ ├── styles.js │ └── styles.js.map ├── context-menu.d.ts ├── context-menu.js ├── context-menu.js.map ├── copy-to-clipboard-code.d.ts ├── copy-to-clipboard-code.js ├── copy-to-clipboard-code.js.map ├── copy-to-clipboard │ ├── clipboard-copy-element.d.ts │ ├── clipboard-copy-element.js │ ├── clipboard-copy-element.js.map │ ├── clipboard-copy-styles.d.ts │ ├── clipboard-copy-styles.js │ ├── clipboard-copy-styles.js.map │ ├── clipboard.d.ts │ ├── clipboard.js │ ├── clipboard.js.map │ ├── index.d.ts │ ├── index.js │ └── index.js.map ├── helpers │ ├── consts.d.ts │ ├── consts.js │ ├── consts.js.map │ ├── icons │ │ ├── css-colors.d.ts │ │ ├── css-colors.js │ │ ├── css-colors.js.map │ │ ├── emoji-icons.d.ts │ │ ├── emoji-icons.js │ │ ├── emoji-icons.js.map │ │ ├── emoji.d.ts │ │ ├── emoji.js │ │ ├── emoji.js.map │ │ ├── fa-icons.d.ts │ │ ├── fa-icons.js │ │ ├── fa-icons.js.map │ │ ├── icons.d.ts │ │ ├── icons.js │ │ ├── icons.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── squared-icons.d.ts │ │ ├── squared-icons.js │ │ ├── squared-icons.js.map │ │ ├── unicode-icons.d.ts │ │ ├── unicode-icons.js │ │ └── unicode-icons.js.map │ ├── normalize-link.d.ts │ ├── normalize-link.js │ ├── normalize-link.js.map │ ├── parse-mmd-element.d.ts │ ├── parse-mmd-element.js │ ├── parse-mmd-element.js.map │ ├── parze_link_destination.d.ts │ ├── parze_link_destination.js │ ├── parze_link_destination.js.map │ ├── utils.d.ts │ ├── utils.js │ └── utils.js.map ├── index.d.ts ├── index.js ├── index.js.map ├── markdown │ ├── common.d.ts │ ├── common.js │ ├── common.js.map │ ├── common │ │ ├── consts.d.ts │ │ ├── consts.js │ │ ├── consts.js.map │ │ ├── convert-math-to-html.d.ts │ │ ├── convert-math-to-html.js │ │ ├── convert-math-to-html.js.map │ │ ├── counters.d.ts │ │ ├── counters.js │ │ ├── counters.js.map │ │ ├── csv.d.ts │ │ ├── csv.js │ │ ├── csv.js.map │ │ ├── html-re.d.ts │ │ ├── html-re.js │ │ ├── html-re.js.map │ │ ├── labels.d.ts │ │ ├── labels.js │ │ ├── labels.js.map │ │ ├── mmdRules.d.ts │ │ ├── mmdRules.js │ │ ├── mmdRules.js.map │ │ ├── mmdRulesToDisable.d.ts │ │ ├── mmdRulesToDisable.js │ │ ├── mmdRulesToDisable.js.map │ │ ├── render-table-cell-content.d.ts │ │ ├── render-table-cell-content.js │ │ ├── render-table-cell-content.js.map │ │ ├── separating-span.d.ts │ │ ├── separating-span.js │ │ ├── separating-span.js.map │ │ ├── table-markdown.d.ts │ │ ├── table-markdown.js │ │ ├── table-markdown.js.map │ │ ├── text-dimentions.d.ts │ │ ├── text-dimentions.js │ │ ├── text-dimentions.js.map │ │ ├── textWidthByTokens.d.ts │ │ ├── textWidthByTokens.js │ │ ├── textWidthByTokens.js.map │ │ ├── tsv.d.ts │ │ ├── tsv.js │ │ ├── tsv.js.map │ │ ├── validate-mathML.d.ts │ │ ├── validate-mathML.js │ │ └── validate-mathML.js.map │ ├── dom-adaptor │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ ├── highlight │ │ ├── common.d.ts │ │ ├── common.js │ │ ├── common.js.map │ │ ├── highlight-math-token.d.ts │ │ ├── highlight-math-token.js │ │ ├── highlight-math-token.js.map │ │ ├── render-rule-highlights.d.ts │ │ ├── render-rule-highlights.js │ │ └── render-rule-highlights.js.map │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── inline-styles │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ ├── mathpix-markdown-plugins.d.ts │ ├── mathpix-markdown-plugins.js │ ├── mathpix-markdown-plugins.js.map │ ├── md-ascii │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ ├── md-block-rule │ │ ├── begin-align.d.ts │ │ ├── begin-align.js │ │ ├── begin-align.js.map │ │ ├── begin-table.d.ts │ │ ├── begin-table.js │ │ ├── begin-table.js.map │ │ ├── begin-tabular │ │ │ ├── common.d.ts │ │ │ ├── common.js │ │ │ ├── common.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── multi-column-row.d.ts │ │ │ ├── multi-column-row.js │ │ │ ├── multi-column-row.js.map │ │ │ ├── parse-tabular.d.ts │ │ │ ├── parse-tabular.js │ │ │ ├── parse-tabular.js.map │ │ │ ├── sub-cell.d.ts │ │ │ ├── sub-cell.js │ │ │ ├── sub-cell.js.map │ │ │ ├── sub-code.d.ts │ │ │ ├── sub-code.js │ │ │ ├── sub-code.js.map │ │ │ ├── sub-math.d.ts │ │ │ ├── sub-math.js │ │ │ ├── sub-math.js.map │ │ │ ├── sub-tabular.d.ts │ │ │ ├── sub-tabular.js │ │ │ ├── sub-tabular.js.map │ │ │ ├── tabular-td.d.ts │ │ │ ├── tabular-td.js │ │ │ └── tabular-td.js.map │ │ ├── helper.d.ts │ │ ├── helper.js │ │ ├── helper.js.map │ │ ├── image-block.d.ts │ │ ├── image-block.js │ │ ├── image-block.js.map │ │ ├── lists │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── re-level.d.ts │ │ │ ├── re-level.js │ │ │ └── re-level.js.map │ │ ├── mathml-block.d.ts │ │ ├── mathml-block.js │ │ ├── mathml-block.js.map │ │ ├── mmd-fence.d.ts │ │ ├── mmd-fence.js │ │ ├── mmd-fence.js.map │ │ ├── mmd-html-block.d.ts │ │ ├── mmd-html-block.js │ │ ├── mmd-html-block.js.map │ │ ├── parse-error.d.ts │ │ ├── parse-error.js │ │ ├── parse-error.js.map │ │ ├── renewcommand.d.ts │ │ ├── renewcommand.js │ │ ├── renewcommand.js.map │ │ ├── svg_block.d.ts │ │ ├── svg_block.js │ │ └── svg_block.js.map │ ├── md-chemistry │ │ ├── chemistry-drawer.d.ts │ │ ├── chemistry-drawer.js │ │ ├── chemistry-drawer.js.map │ │ ├── chemistry-options.d.ts │ │ ├── chemistry-options.js │ │ ├── chemistry-options.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ └── smiles-drawer │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── src │ │ │ ├── ArrayHelper.d.ts │ │ │ ├── ArrayHelper.js │ │ │ ├── ArrayHelper.js.map │ │ │ ├── Atom.d.ts │ │ │ ├── Atom.js │ │ │ ├── Atom.js.map │ │ │ ├── CanvasWrapper.d.ts │ │ │ ├── CanvasWrapper.js │ │ │ ├── CanvasWrapper.js.map │ │ │ ├── Drawer.d.ts │ │ │ ├── Drawer.js │ │ │ ├── Drawer.js.map │ │ │ ├── Edge.d.ts │ │ │ ├── Edge.js │ │ │ ├── Edge.js.map │ │ │ ├── Graph.d.ts │ │ │ ├── Graph.js │ │ │ ├── Graph.js.map │ │ │ ├── Line.d.ts │ │ │ ├── Line.js │ │ │ ├── Line.js.map │ │ │ ├── MathHelper.d.ts │ │ │ ├── MathHelper.js │ │ │ ├── MathHelper.js.map │ │ │ ├── Parser.d.ts │ │ │ ├── Parser.js │ │ │ ├── Parser.js.map │ │ │ ├── Ring.d.ts │ │ │ ├── Ring.js │ │ │ ├── Ring.js.map │ │ │ ├── RingConnection.d.ts │ │ │ ├── RingConnection.js │ │ │ ├── RingConnection.js.map │ │ │ ├── SSSR.d.ts │ │ │ ├── SSSR.js │ │ │ ├── SSSR.js.map │ │ │ ├── SvgDrawer.d.ts │ │ │ ├── SvgDrawer.js │ │ │ ├── SvgDrawer.js.map │ │ │ ├── SvgWrapper.d.ts │ │ │ ├── SvgWrapper.js │ │ │ ├── SvgWrapper.js.map │ │ │ ├── ThemeManager.d.ts │ │ │ ├── ThemeManager.js │ │ │ ├── ThemeManager.js.map │ │ │ ├── UtilityFunctions.d.ts │ │ │ ├── UtilityFunctions.js │ │ │ ├── UtilityFunctions.js.map │ │ │ ├── Vector2.d.ts │ │ │ ├── Vector2.js │ │ │ ├── Vector2.js.map │ │ │ ├── Vertex.d.ts │ │ │ ├── Vertex.js │ │ │ └── Vertex.js.map │ ├── md-core-rules │ │ ├── set-positions.d.ts │ │ ├── set-positions.js │ │ └── set-positions.js.map │ ├── md-inline-rule │ │ ├── core-inline.d.ts │ │ ├── core-inline.js │ │ ├── core-inline.js.map │ │ ├── diagbox-inline.d.ts │ │ ├── diagbox-inline.js │ │ ├── diagbox-inline.js.map │ │ ├── html_inline_full_tag.d.ts │ │ ├── html_inline_full_tag.js │ │ ├── html_inline_full_tag.js.map │ │ ├── image.d.ts │ │ ├── image.js │ │ ├── image.js.map │ │ ├── includegraphics.d.ts │ │ ├── includegraphics.js │ │ ├── includegraphics.js.map │ │ ├── lists.d.ts │ │ ├── lists.js │ │ ├── lists.js.map │ │ ├── mathml-inline.d.ts │ │ ├── mathml-inline.js │ │ ├── mathml-inline.js.map │ │ ├── mmd-icon.d.ts │ │ ├── mmd-icon.js │ │ ├── mmd-icon.js.map │ │ ├── new-line-to-space.d.ts │ │ ├── new-line-to-space.js │ │ ├── new-line-to-space.js.map │ │ ├── refs.d.ts │ │ ├── refs.js │ │ ├── refs.js.map │ │ ├── renewcommand.d.ts │ │ ├── renewcommand.js │ │ ├── renewcommand.js.map │ │ ├── setcounter-section.d.ts │ │ ├── setcounter-section.js │ │ ├── setcounter-section.js.map │ │ ├── tabular.d.ts │ │ ├── tabular.js │ │ ├── tabular.js.map │ │ ├── text-collapse.d.ts │ │ ├── text-collapse.js │ │ ├── text-collapse.js.map │ │ ├── text-mode.d.ts │ │ ├── text-mode.js │ │ ├── text-mode.js.map │ │ ├── underline.d.ts │ │ ├── underline.js │ │ ├── underline.js.map │ │ ├── utils.d.ts │ │ ├── utils.js │ │ └── utils.js.map │ ├── md-inline-rule2 │ │ ├── mmd-html_inline2.d.ts │ │ ├── mmd-html_inline2.js │ │ └── mmd-html_inline2.js.map │ ├── md-latex-footnotes │ │ ├── block-rule.d.ts │ │ ├── block-rule.js │ │ ├── block-rule.js.map │ │ ├── core-rule.d.ts │ │ ├── core-rule.js │ │ ├── core-rule.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── inline-rule.d.ts │ │ ├── inline-rule.js │ │ ├── inline-rule.js.map │ │ ├── inline-ruler2.d.ts │ │ ├── inline-ruler2.js │ │ ├── inline-ruler2.js.map │ │ ├── interfaces.d.ts │ │ ├── interfaces.js │ │ ├── interfaces.js.map │ │ ├── render-rule.d.ts │ │ ├── render-rule.js │ │ ├── render-rule.js.map │ │ ├── utils.d.ts │ │ ├── utils.js │ │ └── utils.js.map │ ├── md-renderer-rules │ │ ├── breaks.d.ts │ │ ├── breaks.js │ │ ├── breaks.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── render-diagbox.d.ts │ │ ├── render-diagbox.js │ │ ├── render-diagbox.js.map │ │ ├── render-lists.d.ts │ │ ├── render-lists.js │ │ ├── render-lists.js.map │ │ ├── render-tabular.d.ts │ │ ├── render-tabular.js │ │ ├── render-tabular.js.map │ │ ├── underline.d.ts │ │ ├── underline.js │ │ └── underline.js.map │ ├── md-svg-to-base64 │ │ ├── base64.d.ts │ │ ├── base64.js │ │ ├── base64.js.map │ │ ├── convert-scv-to-base64.d.ts │ │ ├── convert-scv-to-base64.js │ │ ├── convert-scv-to-base64.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ ├── md-theorem │ │ ├── block-rule.d.ts │ │ ├── block-rule.js │ │ ├── block-rule.js.map │ │ ├── helper.d.ts │ │ ├── helper.js │ │ ├── helper.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── inline-rule.d.ts │ │ ├── inline-rule.js │ │ └── inline-rule.js.map │ ├── mdHighlightCodePlugin.d.ts │ ├── mdHighlightCodePlugin.js │ ├── mdHighlightCodePlugin.js.map │ ├── mdOptions.d.ts │ ├── mdOptions.js │ ├── mdOptions.js.map │ ├── mdPluginAnchor.d.ts │ ├── mdPluginAnchor.js │ ├── mdPluginAnchor.js.map │ ├── mdPluginCollapsible.d.ts │ ├── mdPluginCollapsible.js │ ├── mdPluginCollapsible.js.map │ ├── mdPluginConfigured.d.ts │ ├── mdPluginConfigured.js │ ├── mdPluginConfigured.js.map │ ├── mdPluginLists.d.ts │ ├── mdPluginLists.js │ ├── mdPluginLists.js.map │ ├── mdPluginRaw.d.ts │ ├── mdPluginRaw.js │ ├── mdPluginRaw.js.map │ ├── mdPluginSeparateForBlock.d.ts │ ├── mdPluginSeparateForBlock.js │ ├── mdPluginSeparateForBlock.js.map │ ├── mdPluginTOC.d.ts │ ├── mdPluginTOC.js │ ├── mdPluginTOC.js.map │ ├── mdPluginTableTabular.d.ts │ ├── mdPluginTableTabular.js │ ├── mdPluginTableTabular.js.map │ ├── mdPluginText.d.ts │ ├── mdPluginText.js │ ├── mdPluginText.js.map │ ├── mdSetPositionsAndHighlight.d.ts │ ├── mdSetPositionsAndHighlight.js │ ├── mdSetPositionsAndHighlight.js.map │ ├── rules.d.ts │ ├── rules.js │ ├── rules.js.map │ ├── sanitize │ │ ├── attrs.d.ts │ │ ├── attrs.js │ │ ├── attrs.js.map │ │ ├── consts.d.ts │ │ ├── consts.js │ │ ├── consts.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── sanitize-html.d.ts │ │ ├── sanitize-html.js │ │ ├── sanitize-html.js.map │ │ ├── tags.d.ts │ │ ├── tags.js │ │ └── tags.js.map │ ├── utils.d.ts │ ├── utils.js │ └── utils.js.map ├── mathjax │ ├── fix-unicode.d.ts │ ├── fix-unicode.js │ ├── fix-unicode.js.map │ ├── helpers │ │ ├── array │ │ │ ├── ArrayConfiguration.d.ts │ │ │ ├── ArrayConfiguration.js │ │ │ ├── ArrayConfiguration.js.map │ │ │ ├── ArrayMappings.d.ts │ │ │ ├── ArrayMappings.js │ │ │ ├── ArrayMappings.js.map │ │ │ ├── ArrayMethods.d.ts │ │ │ ├── ArrayMethods.js │ │ │ └── ArrayMethods.js.map │ │ └── icon │ │ │ ├── IconConfiguration.d.ts │ │ │ ├── IconConfiguration.js │ │ │ ├── IconConfiguration.js.map │ │ │ ├── IconConstants.d.ts │ │ │ ├── IconConstants.js │ │ │ ├── IconConstants.js.map │ │ │ ├── IconMethods.d.ts │ │ │ ├── IconMethods.js │ │ │ ├── IconMethods.js.map │ │ │ ├── IconUtil.d.ts │ │ │ ├── IconUtil.js │ │ │ └── IconUtil.js.map │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── mathJaxConfig.d.ts │ ├── mathJaxConfig.js │ ├── mathJaxConfig.js.map │ ├── mathjax.d.ts │ ├── mathjax.js │ ├── mathjax.js.map │ ├── mathml-word.d.ts │ ├── mathml-word.js │ ├── mathml-word.js.map │ ├── my-BaseMappings.d.ts │ ├── my-BaseMappings.js │ ├── my-BaseMappings.js.map │ ├── serialized-ascii │ │ ├── common.d.ts │ │ ├── common.js │ │ ├── common.js.map │ │ ├── handlers.d.ts │ │ ├── handlers.js │ │ ├── handlers.js.map │ │ ├── helperA.d.ts │ │ ├── helperA.js │ │ ├── helperA.js.map │ │ ├── helperLinear.d.ts │ │ ├── helperLinear.js │ │ ├── helperLinear.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── node-utils.d.ts │ │ ├── node-utils.js │ │ └── node-utils.js.map │ ├── utils.d.ts │ ├── utils.js │ └── utils.js.map ├── mathpix-markdown-model │ ├── check-formula.d.ts │ ├── check-formula.js │ ├── check-formula.js.map │ ├── html-page.d.ts │ ├── html-page.js │ ├── html-page.js.map │ ├── index.d.ts │ ├── index.js │ └── index.js.map ├── sre │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── sre-browser.d.ts │ ├── sre-browser.js │ ├── sre-browser.js.map │ ├── sre-node.d.ts │ ├── sre-node.js │ └── sre-node.js.map ├── styles │ ├── halpers.d.ts │ ├── halpers.js │ ├── halpers.js.map │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── styles-code.d.ts │ ├── styles-code.js │ ├── styles-code.js.map │ ├── styles-container.d.ts │ ├── styles-container.js │ ├── styles-container.js.map │ ├── styles-fonts.d.ts │ ├── styles-fonts.js │ ├── styles-fonts.js.map │ ├── styles-lists.d.ts │ ├── styles-lists.js │ ├── styles-lists.js.map │ ├── styles-tabular.d.ts │ ├── styles-tabular.js │ └── styles-tabular.js.map └── yaml-parser │ ├── index.d.ts │ ├── index.js │ └── index.js.map ├── package.json ├── src ├── bundle.tsx ├── components │ ├── mathpix-loader │ │ └── index.tsx │ └── mathpix-markdown │ │ └── index.tsx ├── contex-menu │ ├── index.ts │ ├── menu │ │ ├── consts.ts │ │ ├── helper.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── menu-item-actions.ts │ │ ├── menu-item.ts │ │ └── menu-items.ts │ └── styles.ts ├── context-menu.tsx ├── copy-to-clipboard-code.tsx ├── copy-to-clipboard │ ├── clipboard-copy-element.ts │ ├── clipboard-copy-styles.ts │ ├── clipboard.ts │ └── index.ts ├── helpers │ ├── consts.ts │ ├── icons │ │ ├── css-colors.ts │ │ ├── emoji-icons.ts │ │ ├── fa-icons.ts │ │ ├── index.ts │ │ ├── squared-icons.ts │ │ └── unicode-icons.ts │ ├── normalize-link.ts │ ├── parse-mmd-element.ts │ ├── parze_link_destination.ts │ └── utils.ts ├── index.tsx ├── markdown │ ├── common.ts │ ├── common │ │ ├── consts.ts │ │ ├── convert-math-to-html.ts │ │ ├── counters.ts │ │ ├── csv.ts │ │ ├── html-re.ts │ │ ├── labels.ts │ │ ├── mmdRules.ts │ │ ├── mmdRulesToDisable.ts │ │ ├── render-table-cell-content.ts │ │ ├── separating-span.ts │ │ ├── table-markdown.ts │ │ ├── text-dimentions.ts │ │ ├── textWidthByTokens.ts │ │ ├── tsv.ts │ │ └── validate-mathML.ts │ ├── dom-adaptor │ │ └── index.ts │ ├── highlight │ │ ├── common.ts │ │ ├── highlight-math-token.ts │ │ └── render-rule-highlights.ts │ ├── index.ts │ ├── inline-styles │ │ └── index.ts │ ├── mathpix-markdown-plugins.ts │ ├── md-ascii │ │ └── index.ts │ ├── md-block-rule │ │ ├── begin-align.ts │ │ ├── begin-table.ts │ │ ├── begin-tabular │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── multi-column-row.ts │ │ │ ├── parse-tabular.ts │ │ │ ├── sub-cell.ts │ │ │ ├── sub-code.ts │ │ │ ├── sub-math.ts │ │ │ ├── sub-tabular.ts │ │ │ └── tabular-td.ts │ │ ├── helper.ts │ │ ├── image-block.ts │ │ ├── lists │ │ │ ├── index.ts │ │ │ └── re-level.ts │ │ ├── mathml-block.ts │ │ ├── mmd-fence.ts │ │ ├── mmd-html-block.ts │ │ ├── parse-error.ts │ │ ├── renewcommand.ts │ │ └── svg_block.ts │ ├── md-chemistry │ │ ├── chemistry-drawer.ts │ │ ├── chemistry-options.ts │ │ ├── index.ts │ │ └── smiles-drawer │ │ │ ├── index.ts │ │ │ └── src │ │ │ ├── ArrayHelper.ts │ │ │ ├── Atom.ts │ │ │ ├── CanvasWrapper.ts │ │ │ ├── Drawer.ts │ │ │ ├── Edge.ts │ │ │ ├── Graph.ts │ │ │ ├── Line.ts │ │ │ ├── MathHelper.ts │ │ │ ├── Parser.ts │ │ │ ├── Ring.ts │ │ │ ├── RingConnection.ts │ │ │ ├── SSSR.ts │ │ │ ├── SvgDrawer.ts │ │ │ ├── SvgWrapper.ts │ │ │ ├── ThemeManager.ts │ │ │ ├── UtilityFunctions.ts │ │ │ ├── Vector2.ts │ │ │ └── Vertex.ts │ ├── md-core-rules │ │ └── set-positions.ts │ ├── md-inline-rule │ │ ├── core-inline.ts │ │ ├── diagbox-inline.ts │ │ ├── html_inline_full_tag.ts │ │ ├── image.ts │ │ ├── includegraphics.ts │ │ ├── lists.ts │ │ ├── mathml-inline.ts │ │ ├── mmd-icon.ts │ │ ├── new-line-to-space.ts │ │ ├── refs.ts │ │ ├── renewcommand.ts │ │ ├── setcounter-section.ts │ │ ├── tabular.ts │ │ ├── text-collapse.ts │ │ ├── text-mode.ts │ │ ├── underline.ts │ │ └── utils.ts │ ├── md-inline-rule2 │ │ └── mmd-html_inline2.ts │ ├── md-latex-footnotes │ │ ├── block-rule.ts │ │ ├── core-rule.ts │ │ ├── index.ts │ │ ├── inline-rule.ts │ │ ├── inline-ruler2.ts │ │ ├── interfaces.ts │ │ ├── render-rule.ts │ │ └── utils.ts │ ├── md-renderer-rules │ │ ├── breaks.ts │ │ ├── index.ts │ │ ├── render-diagbox.ts │ │ ├── render-lists.ts │ │ ├── render-tabular.ts │ │ └── underline.ts │ ├── md-svg-to-base64 │ │ ├── base64.ts │ │ ├── convert-scv-to-base64.ts │ │ └── index.ts │ ├── md-theorem │ │ ├── block-rule.ts │ │ ├── helper.ts │ │ ├── index.ts │ │ └── inline-rule.ts │ ├── mdHighlightCodePlugin.ts │ ├── mdOptions.ts │ ├── mdPluginAnchor.ts │ ├── mdPluginCollapsible.ts │ ├── mdPluginConfigured.ts │ ├── mdPluginLists.ts │ ├── mdPluginRaw.ts │ ├── mdPluginSeparateForBlock.ts │ ├── mdPluginTOC.ts │ ├── mdPluginTableTabular.ts │ ├── mdPluginText.ts │ ├── mdSetPositionsAndHighlight.ts │ ├── rules.ts │ ├── sanitize │ │ ├── attrs.ts │ │ ├── consts.ts │ │ ├── index.ts │ │ ├── sanitize-html.ts │ │ └── tags.ts │ └── utils.ts ├── mathjax │ ├── fix-unicode.ts │ ├── helpers │ │ ├── array │ │ │ ├── ArrayConfiguration.ts │ │ │ ├── ArrayMappings.ts │ │ │ └── ArrayMethods.ts │ │ └── icon │ │ │ └── IconConfiguration.ts │ ├── index.ts │ ├── mathJaxConfig.ts │ ├── mathjax.ts │ ├── mathml-word.ts │ ├── my-BaseMappings.ts │ ├── serialized-ascii │ │ ├── common.ts │ │ ├── handlers.ts │ │ ├── helperA.ts │ │ ├── helperLinear.ts │ │ ├── index.ts │ │ └── node-utils.ts │ └── utils.ts ├── mathpix-markdown-model │ ├── check-formula.ts │ ├── html-page.ts │ └── index.ts ├── sre │ ├── index.ts │ ├── sre-browser.ts │ └── sre-node.ts ├── styles │ ├── halpers.ts │ ├── index.ts │ ├── styles-code.ts │ ├── styles-container.ts │ ├── styles-fonts.ts │ ├── styles-lists.ts │ └── styles-tabular.ts └── yaml-parser │ └── index.ts ├── tests ├── _accessibility.js ├── _ascii-render.js ├── _ascii.js ├── _captions.js ├── _csv.js ├── _data │ ├── _accessibility │ │ └── _data.js │ ├── _ascii │ │ ├── _asciiData.js │ │ ├── _asciiLongDiv.js │ │ ├── _asciiMore.js │ │ ├── _asciiOperationSymbols.js │ │ ├── _asciiSpace.js │ │ ├── _asciiTimes.js │ │ ├── _ascii_frac.js │ │ ├── _ascii_lcm.js │ │ ├── _ascii_liner.js │ │ ├── _ascii_sup_with_wedge.js │ │ └── _ascii_vertical_math.js │ ├── _captions │ │ └── _data.js │ ├── _csv │ │ └── _data.js │ ├── _footnotes │ │ ├── _html.js │ │ └── _mmd.js │ ├── _footnotes_latex │ │ ├── _data-footnote.js │ │ ├── _data-footnotetext.js │ │ ├── _html │ │ │ ├── _html_01.js │ │ │ ├── _html_02.js │ │ │ ├── _html_03.js │ │ │ ├── _html_04.js │ │ │ ├── _html_05.js │ │ │ ├── _html_08.js │ │ │ ├── _html_09.js │ │ │ ├── _html_10.js │ │ │ ├── _html_11.js │ │ │ ├── _html_12.js │ │ │ └── _html_13.js │ │ └── _mmd │ │ │ ├── _mmd_01.js │ │ │ ├── _mmd_02.js │ │ │ ├── _mmd_03.js │ │ │ ├── _mmd_04.js │ │ │ ├── _mmd_05.js │ │ │ ├── _mmd_08.js │ │ │ ├── _mmd_09.js │ │ │ ├── _mmd_10.js │ │ │ ├── _mmd_11.js │ │ │ ├── _mmd_12.js │ │ │ └── _mmd_13.js │ ├── _highlights │ │ └── _data.js │ ├── _html-tag-matching │ │ ├── _data-validate-mathML.js │ │ └── _data.js │ ├── _icon │ │ └── _data.js │ ├── _image │ │ └── _data.js │ ├── _labels │ │ └── _data.js │ ├── _latex-text │ │ ├── _data.js │ │ └── _pageBreak.js │ ├── _lists │ │ └── _data.js │ ├── _markdownToHTMLWithSize │ │ ├── _data.js │ │ ├── _data_bold.js │ │ └── fonts │ │ │ ├── Arial-Bold.ttf │ │ │ └── Arial.ttf │ ├── _mathjax │ │ └── _data.js │ ├── _mathml_word │ │ └── _data.js │ ├── _nonumbers │ │ └── _data.js │ ├── _parseMarkdownByHTML │ │ └── _data.js │ ├── _pluginText │ │ └── _data.js │ ├── _refs │ │ └── _data.js │ ├── _renderOprions │ │ ├── _html.js │ │ ├── _html_disable_all_rules.js │ │ ├── _html_disable_latex.js │ │ ├── _html_disable_markdown.js │ │ ├── _html_disable_markdown_mmd_extensions.js │ │ └── _mmd.js │ ├── _sanitizeHtml │ │ ├── _data.js │ │ └── _data_htmlCheckTagMatching.js │ ├── _sections │ │ └── _data.js │ ├── _sepatation_span │ │ ├── _data.js │ │ ├── _data_fence.js │ │ └── _data_fence_tr.js │ ├── _smiles │ │ ├── _data1.js │ │ ├── _data2.js │ │ ├── _data3.js │ │ ├── _data4.js │ │ ├── _data5.js │ │ ├── _data6.js │ │ ├── _data_CCOc1ccc2oc.js │ │ ├── _markush.js │ │ ├── _more │ │ │ ├── _chembl.js │ │ │ └── _new.js │ │ └── _simple_aromatic_rings.js │ ├── _smilesParse │ │ └── _data.js │ ├── _svg_chart │ │ └── _data.js │ ├── _svg_chem │ │ └── _data.js │ ├── _svg_table │ │ └── _data.js │ ├── _table-markdown │ │ └── _data.js │ ├── _tables │ │ └── _data.js │ ├── _tabular │ │ ├── _data.js │ │ ├── _data_digbox.js │ │ └── _data_sub.js │ ├── _theorem │ │ └── _data.js │ ├── _toc │ │ ├── _data-list.js │ │ └── _data-summary.js │ ├── _tokenPositions │ │ ├── _data.js │ │ ├── _data_abstract.js │ │ ├── _data_author.js │ │ ├── _data_lists.js │ │ └── _data_sections.js │ ├── _tsv │ │ ├── _data.js │ │ └── _dataFormats.js │ └── _tsv_with_array │ │ ├── _data.js │ │ ├── _data_gathered_aligned.js │ │ └── _data_include_sub_math.js ├── _footnotes.js ├── _footnotes_latex.js ├── _highlights.js ├── _html-tag-matching.js ├── _icon.js ├── _image.js ├── _labels.js ├── _latex-text.js ├── _lists.js ├── _markdownToHTMLWithSize.js ├── _mathjax.js ├── _mathml_word.js ├── _nonumbers.js ├── _parseMarkdownByHTML.js ├── _pluginText.js ├── _refs.js ├── _renderOptions.js ├── _sanitize.js ├── _sections.js ├── _sepatation_span.js ├── _smiles.js ├── _smilesParse.js ├── _svgChart.js ├── _svgChem.js ├── _svgTable.js ├── _table-markdown.js ├── _tables.js ├── _tabular.js ├── _theorem.js ├── _toc.js ├── _tokenPositions.js ├── _tsv.js └── _tsv_with_array.js ├── tsconfig.json ├── webpack.config.js └── webpack.dev.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/.npmignore -------------------------------------------------------------------------------- /.yarnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/.yarnignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/README.md -------------------------------------------------------------------------------- /assets/mmd-image-properties.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/assets/mmd-image-properties.webp -------------------------------------------------------------------------------- /assets/mmd-vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/assets/mmd-vscode.png -------------------------------------------------------------------------------- /doc/ACCESSIBILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/ACCESSIBILITY.md -------------------------------------------------------------------------------- /doc/icons/color-icons-render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/icons/color-icons-render.html -------------------------------------------------------------------------------- /doc/icons/color-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/icons/color-icons.html -------------------------------------------------------------------------------- /doc/icons/emoji-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/icons/emoji-icons.html -------------------------------------------------------------------------------- /doc/icons/fa-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/icons/fa-icons.html -------------------------------------------------------------------------------- /doc/icons/icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/icons/icons.md -------------------------------------------------------------------------------- /doc/icons/squared-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/icons/squared-icons.html -------------------------------------------------------------------------------- /doc/icons/table-of-icons-render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/icons/table-of-icons-render.html -------------------------------------------------------------------------------- /doc/icons/table-of-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/icons/table-of-icons.html -------------------------------------------------------------------------------- /doc/icons/unicode-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/icons/unicode-icons.html -------------------------------------------------------------------------------- /doc/images/latex-footnotes/latex-footnotes_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-footnotes/latex-footnotes_01.png -------------------------------------------------------------------------------- /doc/images/latex-footnotes/latex-footnotes_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-footnotes/latex-footnotes_02.png -------------------------------------------------------------------------------- /doc/images/latex-footnotes/latex-footnotes_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-footnotes/latex-footnotes_03.png -------------------------------------------------------------------------------- /doc/images/latex-footnotes/latex-footnotes_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-footnotes/latex-footnotes_04.png -------------------------------------------------------------------------------- /doc/images/latex-underline/latex-underline_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-underline/latex-underline_01.png -------------------------------------------------------------------------------- /doc/images/latex-underline/latex-underline_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-underline/latex-underline_02.png -------------------------------------------------------------------------------- /doc/images/latex-underline/latex-underline_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-underline/latex-underline_03.png -------------------------------------------------------------------------------- /doc/images/latex-underline/latex-underline_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-underline/latex-underline_04.png -------------------------------------------------------------------------------- /doc/images/latex-underline/latex-underline_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-underline/latex-underline_05.png -------------------------------------------------------------------------------- /doc/images/latex-underline/latex-underline_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-underline/latex-underline_06.png -------------------------------------------------------------------------------- /doc/images/latex-underline/latex-underline_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/latex-underline/latex-underline_07.png -------------------------------------------------------------------------------- /doc/images/sections/section_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/sections/section_01.png -------------------------------------------------------------------------------- /doc/images/sections/section_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/sections/section_02.png -------------------------------------------------------------------------------- /doc/images/sections/section_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/sections/section_03.png -------------------------------------------------------------------------------- /doc/images/sections/section_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/sections/section_04.png -------------------------------------------------------------------------------- /doc/images/theorem_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/theorem_01.png -------------------------------------------------------------------------------- /doc/images/theorem_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/theorem_02.png -------------------------------------------------------------------------------- /doc/images/theorem_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/theorem_03.png -------------------------------------------------------------------------------- /doc/images/theorem_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/theorem_04.png -------------------------------------------------------------------------------- /doc/images/theorem_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/theorem_05.png -------------------------------------------------------------------------------- /doc/images/theorem_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/theorem_06.png -------------------------------------------------------------------------------- /doc/images/theorem_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/theorem_07.png -------------------------------------------------------------------------------- /doc/images/theorems_and_proofs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/images/theorems_and_proofs.png -------------------------------------------------------------------------------- /doc/latex-footnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/latex-footnotes.md -------------------------------------------------------------------------------- /doc/latex-underline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/latex-underline.md -------------------------------------------------------------------------------- /doc/sections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/sections.md -------------------------------------------------------------------------------- /doc/theorems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/doc/theorems.md -------------------------------------------------------------------------------- /es5/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/es5/bundle.js -------------------------------------------------------------------------------- /es5/context-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/es5/context-menu.js -------------------------------------------------------------------------------- /es5/copy-to-clipboard-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/es5/copy-to-clipboard-code.js -------------------------------------------------------------------------------- /es5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/es5/index.js -------------------------------------------------------------------------------- /es5/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/es5/index.js.map -------------------------------------------------------------------------------- /examples/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/app.js -------------------------------------------------------------------------------- /examples/appPositions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/appPositions.js -------------------------------------------------------------------------------- /examples/compare-formats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/compare-formats/README.md -------------------------------------------------------------------------------- /examples/compare-formats/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/compare-formats/app.js -------------------------------------------------------------------------------- /examples/compare-formats/format-cases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/compare-formats/format-cases.txt -------------------------------------------------------------------------------- /examples/compare-formats/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/compare-formats/package.json -------------------------------------------------------------------------------- /examples/compare-formats/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/compare-formats/result.html -------------------------------------------------------------------------------- /examples/compare-formats/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/compare-formats/result.txt -------------------------------------------------------------------------------- /examples/compare-formats/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/compare-formats/views/index.ejs -------------------------------------------------------------------------------- /examples/html/content-mmd-to-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/html/content-mmd-to-html.html -------------------------------------------------------------------------------- /examples/html/content-mmd-to-html.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/html/content-mmd-to-html.html.md -------------------------------------------------------------------------------- /examples/html/input-mmd-to-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/html/input-mmd-to-html.html -------------------------------------------------------------------------------- /examples/html/input-mmd-to-html.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/html/input-mmd-to-html.html.md -------------------------------------------------------------------------------- /examples/mathpix-markdown-it-node-examples/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/mathpix-markdown-it-node-examples/app.js -------------------------------------------------------------------------------- /examples/mathpix-markdown-it-node-examples/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/mathpix-markdown-it-node-examples/data.md -------------------------------------------------------------------------------- /examples/nextJS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/README.md -------------------------------------------------------------------------------- /examples/nextJS/app/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/app/data.js -------------------------------------------------------------------------------- /examples/nextJS/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/app/favicon.ico -------------------------------------------------------------------------------- /examples/nextJS/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/app/globals.css -------------------------------------------------------------------------------- /examples/nextJS/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/app/layout.tsx -------------------------------------------------------------------------------- /examples/nextJS/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/app/page.tsx -------------------------------------------------------------------------------- /examples/nextJS/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/next-env.d.ts -------------------------------------------------------------------------------- /examples/nextJS/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/next.config.js -------------------------------------------------------------------------------- /examples/nextJS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/package.json -------------------------------------------------------------------------------- /examples/nextJS/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/postcss.config.js -------------------------------------------------------------------------------- /examples/nextJS/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/tailwind.config.ts -------------------------------------------------------------------------------- /examples/nextJS/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/nextJS/tsconfig.json -------------------------------------------------------------------------------- /examples/react-app/use-components/.env: -------------------------------------------------------------------------------- 1 | GENERATE_SOURCEMAP=false 2 | -------------------------------------------------------------------------------- /examples/react-app/use-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-components/.gitignore -------------------------------------------------------------------------------- /examples/react-app/use-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-components/README.md -------------------------------------------------------------------------------- /examples/react-app/use-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-components/package.json -------------------------------------------------------------------------------- /examples/react-app/use-components/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-components/src/App.js -------------------------------------------------------------------------------- /examples/react-app/use-components/src/_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-components/src/_data.md -------------------------------------------------------------------------------- /examples/react-app/use-components/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-components/src/index.js -------------------------------------------------------------------------------- /examples/react-app/use-render-method/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-render-method/.gitignore -------------------------------------------------------------------------------- /examples/react-app/use-render-method/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-render-method/README.md -------------------------------------------------------------------------------- /examples/react-app/use-render-method/src/style.css: -------------------------------------------------------------------------------- 1 | .App { 2 | width: 800px; 3 | margin: auto; 4 | } 5 | -------------------------------------------------------------------------------- /examples/react-app/use-toc/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /examples/react-app/use-toc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/.gitignore -------------------------------------------------------------------------------- /examples/react-app/use-toc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/README.md -------------------------------------------------------------------------------- /examples/react-app/use-toc/example-toc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/example-toc.gif -------------------------------------------------------------------------------- /examples/react-app/use-toc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/package.json -------------------------------------------------------------------------------- /examples/react-app/use-toc/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/public/favicon.ico -------------------------------------------------------------------------------- /examples/react-app/use-toc/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/public/index.html -------------------------------------------------------------------------------- /examples/react-app/use-toc/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/public/manifest.json -------------------------------------------------------------------------------- /examples/react-app/use-toc/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/src/App.jsx -------------------------------------------------------------------------------- /examples/react-app/use-toc/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/src/data.js -------------------------------------------------------------------------------- /examples/react-app/use-toc/src/form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/src/form.jsx -------------------------------------------------------------------------------- /examples/react-app/use-toc/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/src/index.js -------------------------------------------------------------------------------- /examples/react-app/use-toc/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/examples/react-app/use-toc/src/style.css -------------------------------------------------------------------------------- /lib/bundle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/bundle.d.ts -------------------------------------------------------------------------------- /lib/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/bundle.js -------------------------------------------------------------------------------- /lib/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/bundle.js.map -------------------------------------------------------------------------------- /lib/components/mathpix-loader/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/components/mathpix-loader/index.d.ts -------------------------------------------------------------------------------- /lib/components/mathpix-loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/components/mathpix-loader/index.js -------------------------------------------------------------------------------- /lib/components/mathpix-loader/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/components/mathpix-loader/index.js.map -------------------------------------------------------------------------------- /lib/components/mathpix-markdown/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/components/mathpix-markdown/index.d.ts -------------------------------------------------------------------------------- /lib/components/mathpix-markdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/components/mathpix-markdown/index.js -------------------------------------------------------------------------------- /lib/components/mathpix-markdown/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/components/mathpix-markdown/index.js.map -------------------------------------------------------------------------------- /lib/contex-menu/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/index.d.ts -------------------------------------------------------------------------------- /lib/contex-menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/index.js -------------------------------------------------------------------------------- /lib/contex-menu/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/index.js.map -------------------------------------------------------------------------------- /lib/contex-menu/menu/consts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/consts.d.ts -------------------------------------------------------------------------------- /lib/contex-menu/menu/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/consts.js -------------------------------------------------------------------------------- /lib/contex-menu/menu/consts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/consts.js.map -------------------------------------------------------------------------------- /lib/contex-menu/menu/helper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/helper.d.ts -------------------------------------------------------------------------------- /lib/contex-menu/menu/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/helper.js -------------------------------------------------------------------------------- /lib/contex-menu/menu/helper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/helper.js.map -------------------------------------------------------------------------------- /lib/contex-menu/menu/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/index.d.ts -------------------------------------------------------------------------------- /lib/contex-menu/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/index.js -------------------------------------------------------------------------------- /lib/contex-menu/menu/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/index.js.map -------------------------------------------------------------------------------- /lib/contex-menu/menu/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/interfaces.d.ts -------------------------------------------------------------------------------- /lib/contex-menu/menu/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/interfaces.js -------------------------------------------------------------------------------- /lib/contex-menu/menu/interfaces.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/interfaces.js.map -------------------------------------------------------------------------------- /lib/contex-menu/menu/menu-item-actions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/menu-item-actions.d.ts -------------------------------------------------------------------------------- /lib/contex-menu/menu/menu-item-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/menu-item-actions.js -------------------------------------------------------------------------------- /lib/contex-menu/menu/menu-item-actions.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/menu-item-actions.js.map -------------------------------------------------------------------------------- /lib/contex-menu/menu/menu-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/menu-item.d.ts -------------------------------------------------------------------------------- /lib/contex-menu/menu/menu-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/menu-item.js -------------------------------------------------------------------------------- /lib/contex-menu/menu/menu-item.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/menu-item.js.map -------------------------------------------------------------------------------- /lib/contex-menu/menu/menu-items.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/menu-items.d.ts -------------------------------------------------------------------------------- /lib/contex-menu/menu/menu-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/menu-items.js -------------------------------------------------------------------------------- /lib/contex-menu/menu/menu-items.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/menu/menu-items.js.map -------------------------------------------------------------------------------- /lib/contex-menu/styles.d.ts: -------------------------------------------------------------------------------- 1 | export declare const menuStyle: () => string; 2 | -------------------------------------------------------------------------------- /lib/contex-menu/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/styles.js -------------------------------------------------------------------------------- /lib/contex-menu/styles.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/contex-menu/styles.js.map -------------------------------------------------------------------------------- /lib/context-menu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/context-menu.d.ts -------------------------------------------------------------------------------- /lib/context-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/context-menu.js -------------------------------------------------------------------------------- /lib/context-menu.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/context-menu.js.map -------------------------------------------------------------------------------- /lib/copy-to-clipboard-code.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard-code.d.ts -------------------------------------------------------------------------------- /lib/copy-to-clipboard-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard-code.js -------------------------------------------------------------------------------- /lib/copy-to-clipboard-code.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard-code.js.map -------------------------------------------------------------------------------- /lib/copy-to-clipboard/clipboard-copy-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard/clipboard-copy-element.js -------------------------------------------------------------------------------- /lib/copy-to-clipboard/clipboard-copy-styles.d.ts: -------------------------------------------------------------------------------- 1 | export declare const clipboardCopyStyles: () => string; 2 | -------------------------------------------------------------------------------- /lib/copy-to-clipboard/clipboard-copy-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard/clipboard-copy-styles.js -------------------------------------------------------------------------------- /lib/copy-to-clipboard/clipboard.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard/clipboard.d.ts -------------------------------------------------------------------------------- /lib/copy-to-clipboard/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard/clipboard.js -------------------------------------------------------------------------------- /lib/copy-to-clipboard/clipboard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard/clipboard.js.map -------------------------------------------------------------------------------- /lib/copy-to-clipboard/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard/index.d.ts -------------------------------------------------------------------------------- /lib/copy-to-clipboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard/index.js -------------------------------------------------------------------------------- /lib/copy-to-clipboard/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/copy-to-clipboard/index.js.map -------------------------------------------------------------------------------- /lib/helpers/consts.d.ts: -------------------------------------------------------------------------------- 1 | export declare const envArraysShouldBeFlattenInTSV: string[]; 2 | -------------------------------------------------------------------------------- /lib/helpers/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/consts.js -------------------------------------------------------------------------------- /lib/helpers/consts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/consts.js.map -------------------------------------------------------------------------------- /lib/helpers/icons/css-colors.d.ts: -------------------------------------------------------------------------------- 1 | export declare const cssColors: string[]; 2 | -------------------------------------------------------------------------------- /lib/helpers/icons/css-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/css-colors.js -------------------------------------------------------------------------------- /lib/helpers/icons/css-colors.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/css-colors.js.map -------------------------------------------------------------------------------- /lib/helpers/icons/emoji-icons.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/emoji-icons.d.ts -------------------------------------------------------------------------------- /lib/helpers/icons/emoji-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/emoji-icons.js -------------------------------------------------------------------------------- /lib/helpers/icons/emoji-icons.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/emoji-icons.js.map -------------------------------------------------------------------------------- /lib/helpers/icons/emoji.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/emoji.d.ts -------------------------------------------------------------------------------- /lib/helpers/icons/emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/emoji.js -------------------------------------------------------------------------------- /lib/helpers/icons/emoji.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/emoji.js.map -------------------------------------------------------------------------------- /lib/helpers/icons/fa-icons.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/fa-icons.d.ts -------------------------------------------------------------------------------- /lib/helpers/icons/fa-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/fa-icons.js -------------------------------------------------------------------------------- /lib/helpers/icons/fa-icons.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/fa-icons.js.map -------------------------------------------------------------------------------- /lib/helpers/icons/icons.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/icons.d.ts -------------------------------------------------------------------------------- /lib/helpers/icons/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/icons.js -------------------------------------------------------------------------------- /lib/helpers/icons/icons.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/icons.js.map -------------------------------------------------------------------------------- /lib/helpers/icons/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/index.d.ts -------------------------------------------------------------------------------- /lib/helpers/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/index.js -------------------------------------------------------------------------------- /lib/helpers/icons/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/index.js.map -------------------------------------------------------------------------------- /lib/helpers/icons/squared-icons.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/squared-icons.d.ts -------------------------------------------------------------------------------- /lib/helpers/icons/squared-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/squared-icons.js -------------------------------------------------------------------------------- /lib/helpers/icons/squared-icons.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/squared-icons.js.map -------------------------------------------------------------------------------- /lib/helpers/icons/unicode-icons.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/unicode-icons.d.ts -------------------------------------------------------------------------------- /lib/helpers/icons/unicode-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/unicode-icons.js -------------------------------------------------------------------------------- /lib/helpers/icons/unicode-icons.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/icons/unicode-icons.js.map -------------------------------------------------------------------------------- /lib/helpers/normalize-link.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/normalize-link.d.ts -------------------------------------------------------------------------------- /lib/helpers/normalize-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/normalize-link.js -------------------------------------------------------------------------------- /lib/helpers/normalize-link.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/normalize-link.js.map -------------------------------------------------------------------------------- /lib/helpers/parse-mmd-element.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/parse-mmd-element.d.ts -------------------------------------------------------------------------------- /lib/helpers/parse-mmd-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/parse-mmd-element.js -------------------------------------------------------------------------------- /lib/helpers/parse-mmd-element.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/parse-mmd-element.js.map -------------------------------------------------------------------------------- /lib/helpers/parze_link_destination.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/parze_link_destination.d.ts -------------------------------------------------------------------------------- /lib/helpers/parze_link_destination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/parze_link_destination.js -------------------------------------------------------------------------------- /lib/helpers/parze_link_destination.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/parze_link_destination.js.map -------------------------------------------------------------------------------- /lib/helpers/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/utils.d.ts -------------------------------------------------------------------------------- /lib/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/utils.js -------------------------------------------------------------------------------- /lib/helpers/utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/helpers/utils.js.map -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/index.js.map -------------------------------------------------------------------------------- /lib/markdown/common.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common.d.ts -------------------------------------------------------------------------------- /lib/markdown/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common.js -------------------------------------------------------------------------------- /lib/markdown/common.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common.js.map -------------------------------------------------------------------------------- /lib/markdown/common/consts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/consts.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/consts.js -------------------------------------------------------------------------------- /lib/markdown/common/consts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/consts.js.map -------------------------------------------------------------------------------- /lib/markdown/common/convert-math-to-html.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/convert-math-to-html.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/convert-math-to-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/convert-math-to-html.js -------------------------------------------------------------------------------- /lib/markdown/common/convert-math-to-html.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/convert-math-to-html.js.map -------------------------------------------------------------------------------- /lib/markdown/common/counters.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/counters.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/counters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/counters.js -------------------------------------------------------------------------------- /lib/markdown/common/counters.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/counters.js.map -------------------------------------------------------------------------------- /lib/markdown/common/csv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/csv.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/csv.js -------------------------------------------------------------------------------- /lib/markdown/common/csv.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/csv.js.map -------------------------------------------------------------------------------- /lib/markdown/common/html-re.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/html-re.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/html-re.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/html-re.js -------------------------------------------------------------------------------- /lib/markdown/common/html-re.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/html-re.js.map -------------------------------------------------------------------------------- /lib/markdown/common/labels.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/labels.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/labels.js -------------------------------------------------------------------------------- /lib/markdown/common/labels.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/labels.js.map -------------------------------------------------------------------------------- /lib/markdown/common/mmdRules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/mmdRules.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/mmdRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/mmdRules.js -------------------------------------------------------------------------------- /lib/markdown/common/mmdRules.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/mmdRules.js.map -------------------------------------------------------------------------------- /lib/markdown/common/mmdRulesToDisable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/mmdRulesToDisable.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/mmdRulesToDisable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/mmdRulesToDisable.js -------------------------------------------------------------------------------- /lib/markdown/common/mmdRulesToDisable.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/mmdRulesToDisable.js.map -------------------------------------------------------------------------------- /lib/markdown/common/separating-span.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/separating-span.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/separating-span.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/separating-span.js -------------------------------------------------------------------------------- /lib/markdown/common/separating-span.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/separating-span.js.map -------------------------------------------------------------------------------- /lib/markdown/common/table-markdown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/table-markdown.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/table-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/table-markdown.js -------------------------------------------------------------------------------- /lib/markdown/common/table-markdown.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/table-markdown.js.map -------------------------------------------------------------------------------- /lib/markdown/common/text-dimentions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/text-dimentions.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/text-dimentions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/text-dimentions.js -------------------------------------------------------------------------------- /lib/markdown/common/text-dimentions.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/text-dimentions.js.map -------------------------------------------------------------------------------- /lib/markdown/common/textWidthByTokens.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/textWidthByTokens.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/textWidthByTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/textWidthByTokens.js -------------------------------------------------------------------------------- /lib/markdown/common/textWidthByTokens.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/textWidthByTokens.js.map -------------------------------------------------------------------------------- /lib/markdown/common/tsv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/tsv.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/tsv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/tsv.js -------------------------------------------------------------------------------- /lib/markdown/common/tsv.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/tsv.js.map -------------------------------------------------------------------------------- /lib/markdown/common/validate-mathML.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/validate-mathML.d.ts -------------------------------------------------------------------------------- /lib/markdown/common/validate-mathML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/validate-mathML.js -------------------------------------------------------------------------------- /lib/markdown/common/validate-mathML.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/common/validate-mathML.js.map -------------------------------------------------------------------------------- /lib/markdown/dom-adaptor/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/dom-adaptor/index.d.ts -------------------------------------------------------------------------------- /lib/markdown/dom-adaptor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/dom-adaptor/index.js -------------------------------------------------------------------------------- /lib/markdown/dom-adaptor/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/dom-adaptor/index.js.map -------------------------------------------------------------------------------- /lib/markdown/highlight/common.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/highlight/common.d.ts -------------------------------------------------------------------------------- /lib/markdown/highlight/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/highlight/common.js -------------------------------------------------------------------------------- /lib/markdown/highlight/common.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/highlight/common.js.map -------------------------------------------------------------------------------- /lib/markdown/highlight/highlight-math-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/highlight/highlight-math-token.js -------------------------------------------------------------------------------- /lib/markdown/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/index.d.ts -------------------------------------------------------------------------------- /lib/markdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/index.js -------------------------------------------------------------------------------- /lib/markdown/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/index.js.map -------------------------------------------------------------------------------- /lib/markdown/inline-styles/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/inline-styles/index.d.ts -------------------------------------------------------------------------------- /lib/markdown/inline-styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/inline-styles/index.js -------------------------------------------------------------------------------- /lib/markdown/inline-styles/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/inline-styles/index.js.map -------------------------------------------------------------------------------- /lib/markdown/mathpix-markdown-plugins.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mathpix-markdown-plugins.d.ts -------------------------------------------------------------------------------- /lib/markdown/mathpix-markdown-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mathpix-markdown-plugins.js -------------------------------------------------------------------------------- /lib/markdown/mathpix-markdown-plugins.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mathpix-markdown-plugins.js.map -------------------------------------------------------------------------------- /lib/markdown/md-ascii/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-ascii/index.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-ascii/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-ascii/index.js -------------------------------------------------------------------------------- /lib/markdown/md-ascii/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-ascii/index.js.map -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/begin-align.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/begin-align.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/begin-align.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/begin-align.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/begin-align.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/begin-align.js.map -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/begin-table.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/begin-table.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/begin-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/begin-table.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/begin-table.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/begin-table.js.map -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/helper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/helper.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/helper.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/helper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/helper.js.map -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/image-block.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/image-block.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/image-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/image-block.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/image-block.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/image-block.js.map -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/lists/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/lists/index.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/lists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/lists/index.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/lists/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/lists/index.js.map -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/lists/re-level.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/lists/re-level.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/lists/re-level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/lists/re-level.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/mathml-block.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/mathml-block.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/mathml-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/mathml-block.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/mathml-block.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/mathml-block.js.map -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/mmd-fence.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/mmd-fence.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/mmd-fence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/mmd-fence.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/mmd-fence.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/mmd-fence.js.map -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/mmd-html-block.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/mmd-html-block.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/mmd-html-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/mmd-html-block.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/parse-error.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/parse-error.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/parse-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/parse-error.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/parse-error.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/parse-error.js.map -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/renewcommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/renewcommand.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/renewcommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/renewcommand.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/renewcommand.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/renewcommand.js.map -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/svg_block.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/svg_block.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/svg_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/svg_block.js -------------------------------------------------------------------------------- /lib/markdown/md-block-rule/svg_block.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-block-rule/svg_block.js.map -------------------------------------------------------------------------------- /lib/markdown/md-chemistry/chemistry-drawer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-chemistry/chemistry-drawer.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-chemistry/chemistry-drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-chemistry/chemistry-drawer.js -------------------------------------------------------------------------------- /lib/markdown/md-chemistry/chemistry-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-chemistry/chemistry-options.js -------------------------------------------------------------------------------- /lib/markdown/md-chemistry/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-chemistry/index.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-chemistry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-chemistry/index.js -------------------------------------------------------------------------------- /lib/markdown/md-chemistry/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-chemistry/index.js.map -------------------------------------------------------------------------------- /lib/markdown/md-core-rules/set-positions.d.ts: -------------------------------------------------------------------------------- 1 | export declare const setPositions: (state: any) => void; 2 | -------------------------------------------------------------------------------- /lib/markdown/md-core-rules/set-positions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-core-rules/set-positions.js -------------------------------------------------------------------------------- /lib/markdown/md-core-rules/set-positions.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-core-rules/set-positions.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/core-inline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/core-inline.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/core-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/core-inline.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/core-inline.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/core-inline.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/diagbox-inline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/diagbox-inline.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/diagbox-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/diagbox-inline.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/image.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/image.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/image.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/image.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/includegraphics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/includegraphics.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/lists.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/lists.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/lists.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/lists.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/lists.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/mathml-inline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/mathml-inline.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/mathml-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/mathml-inline.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/mmd-icon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/mmd-icon.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/mmd-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/mmd-icon.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/mmd-icon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/mmd-icon.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/refs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/refs.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/refs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/refs.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/refs.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/refs.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/renewcommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/renewcommand.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/renewcommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/renewcommand.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/renewcommand.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/renewcommand.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/tabular.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/tabular.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/tabular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/tabular.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/tabular.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/tabular.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/text-collapse.d.ts: -------------------------------------------------------------------------------- 1 | export declare const textCollapse: (state: any) => void; 2 | -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/text-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/text-collapse.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/text-mode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/text-mode.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/text-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/text-mode.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/text-mode.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/text-mode.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/underline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/underline.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/underline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/underline.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/underline.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/underline.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/utils.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/utils.js -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule/utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-inline-rule/utils.js.map -------------------------------------------------------------------------------- /lib/markdown/md-inline-rule2/mmd-html_inline2.d.ts: -------------------------------------------------------------------------------- 1 | export declare const mmdHtmlInline2: (state: any) => void; 2 | -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/block-rule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/block-rule.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/block-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/block-rule.js -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/core-rule.d.ts: -------------------------------------------------------------------------------- 1 | export declare const mmd_footnote_tail: (state: any) => void; 2 | -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/core-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/core-rule.js -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/index.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/index.js -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/index.js.map -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/inline-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/inline-rule.js -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/inline-ruler2.d.ts: -------------------------------------------------------------------------------- 1 | export declare const grab_footnote_ref: (state: any) => void; 2 | -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/interfaces.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/interfaces.js -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/render-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/render-rule.js -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/utils.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/utils.js -------------------------------------------------------------------------------- /lib/markdown/md-latex-footnotes/utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-latex-footnotes/utils.js.map -------------------------------------------------------------------------------- /lib/markdown/md-renderer-rules/breaks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-renderer-rules/breaks.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-renderer-rules/breaks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-renderer-rules/breaks.js -------------------------------------------------------------------------------- /lib/markdown/md-renderer-rules/breaks.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-renderer-rules/breaks.js.map -------------------------------------------------------------------------------- /lib/markdown/md-renderer-rules/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-renderer-rules/index.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-renderer-rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-renderer-rules/index.js -------------------------------------------------------------------------------- /lib/markdown/md-renderer-rules/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-renderer-rules/index.js.map -------------------------------------------------------------------------------- /lib/markdown/md-renderer-rules/render-lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-renderer-rules/render-lists.js -------------------------------------------------------------------------------- /lib/markdown/md-renderer-rules/underline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-renderer-rules/underline.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-renderer-rules/underline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-renderer-rules/underline.js -------------------------------------------------------------------------------- /lib/markdown/md-renderer-rules/underline.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-renderer-rules/underline.js.map -------------------------------------------------------------------------------- /lib/markdown/md-svg-to-base64/base64.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-svg-to-base64/base64.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-svg-to-base64/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-svg-to-base64/base64.js -------------------------------------------------------------------------------- /lib/markdown/md-svg-to-base64/base64.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-svg-to-base64/base64.js.map -------------------------------------------------------------------------------- /lib/markdown/md-svg-to-base64/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-svg-to-base64/index.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-svg-to-base64/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-svg-to-base64/index.js -------------------------------------------------------------------------------- /lib/markdown/md-svg-to-base64/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-svg-to-base64/index.js.map -------------------------------------------------------------------------------- /lib/markdown/md-theorem/block-rule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/block-rule.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-theorem/block-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/block-rule.js -------------------------------------------------------------------------------- /lib/markdown/md-theorem/block-rule.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/block-rule.js.map -------------------------------------------------------------------------------- /lib/markdown/md-theorem/helper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/helper.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-theorem/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/helper.js -------------------------------------------------------------------------------- /lib/markdown/md-theorem/helper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/helper.js.map -------------------------------------------------------------------------------- /lib/markdown/md-theorem/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/index.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-theorem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/index.js -------------------------------------------------------------------------------- /lib/markdown/md-theorem/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/index.js.map -------------------------------------------------------------------------------- /lib/markdown/md-theorem/inline-rule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/inline-rule.d.ts -------------------------------------------------------------------------------- /lib/markdown/md-theorem/inline-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/inline-rule.js -------------------------------------------------------------------------------- /lib/markdown/md-theorem/inline-rule.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/md-theorem/inline-rule.js.map -------------------------------------------------------------------------------- /lib/markdown/mdHighlightCodePlugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdHighlightCodePlugin.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdHighlightCodePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdHighlightCodePlugin.js -------------------------------------------------------------------------------- /lib/markdown/mdHighlightCodePlugin.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdHighlightCodePlugin.js.map -------------------------------------------------------------------------------- /lib/markdown/mdOptions.d.ts: -------------------------------------------------------------------------------- 1 | export declare const validateLinkEnableFile: (url: any) => boolean; 2 | -------------------------------------------------------------------------------- /lib/markdown/mdOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdOptions.js -------------------------------------------------------------------------------- /lib/markdown/mdOptions.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdOptions.js.map -------------------------------------------------------------------------------- /lib/markdown/mdPluginAnchor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginAnchor.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdPluginAnchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginAnchor.js -------------------------------------------------------------------------------- /lib/markdown/mdPluginAnchor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginAnchor.js.map -------------------------------------------------------------------------------- /lib/markdown/mdPluginCollapsible.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginCollapsible.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdPluginCollapsible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginCollapsible.js -------------------------------------------------------------------------------- /lib/markdown/mdPluginCollapsible.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginCollapsible.js.map -------------------------------------------------------------------------------- /lib/markdown/mdPluginConfigured.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginConfigured.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdPluginConfigured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginConfigured.js -------------------------------------------------------------------------------- /lib/markdown/mdPluginConfigured.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginConfigured.js.map -------------------------------------------------------------------------------- /lib/markdown/mdPluginLists.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginLists.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdPluginLists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginLists.js -------------------------------------------------------------------------------- /lib/markdown/mdPluginLists.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginLists.js.map -------------------------------------------------------------------------------- /lib/markdown/mdPluginRaw.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginRaw.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdPluginRaw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginRaw.js -------------------------------------------------------------------------------- /lib/markdown/mdPluginRaw.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginRaw.js.map -------------------------------------------------------------------------------- /lib/markdown/mdPluginSeparateForBlock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginSeparateForBlock.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdPluginSeparateForBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginSeparateForBlock.js -------------------------------------------------------------------------------- /lib/markdown/mdPluginSeparateForBlock.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginSeparateForBlock.js.map -------------------------------------------------------------------------------- /lib/markdown/mdPluginTOC.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginTOC.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdPluginTOC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginTOC.js -------------------------------------------------------------------------------- /lib/markdown/mdPluginTOC.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginTOC.js.map -------------------------------------------------------------------------------- /lib/markdown/mdPluginTableTabular.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginTableTabular.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdPluginTableTabular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginTableTabular.js -------------------------------------------------------------------------------- /lib/markdown/mdPluginTableTabular.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginTableTabular.js.map -------------------------------------------------------------------------------- /lib/markdown/mdPluginText.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginText.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdPluginText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginText.js -------------------------------------------------------------------------------- /lib/markdown/mdPluginText.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdPluginText.js.map -------------------------------------------------------------------------------- /lib/markdown/mdSetPositionsAndHighlight.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdSetPositionsAndHighlight.d.ts -------------------------------------------------------------------------------- /lib/markdown/mdSetPositionsAndHighlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdSetPositionsAndHighlight.js -------------------------------------------------------------------------------- /lib/markdown/mdSetPositionsAndHighlight.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/mdSetPositionsAndHighlight.js.map -------------------------------------------------------------------------------- /lib/markdown/rules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/rules.d.ts -------------------------------------------------------------------------------- /lib/markdown/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/rules.js -------------------------------------------------------------------------------- /lib/markdown/rules.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/rules.js.map -------------------------------------------------------------------------------- /lib/markdown/sanitize/attrs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/attrs.d.ts -------------------------------------------------------------------------------- /lib/markdown/sanitize/attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/attrs.js -------------------------------------------------------------------------------- /lib/markdown/sanitize/attrs.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/attrs.js.map -------------------------------------------------------------------------------- /lib/markdown/sanitize/consts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/consts.d.ts -------------------------------------------------------------------------------- /lib/markdown/sanitize/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/consts.js -------------------------------------------------------------------------------- /lib/markdown/sanitize/consts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/consts.js.map -------------------------------------------------------------------------------- /lib/markdown/sanitize/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const sanitize: (html: string, options?: {}) => any; 2 | -------------------------------------------------------------------------------- /lib/markdown/sanitize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/index.js -------------------------------------------------------------------------------- /lib/markdown/sanitize/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/index.js.map -------------------------------------------------------------------------------- /lib/markdown/sanitize/sanitize-html.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/sanitize-html.d.ts -------------------------------------------------------------------------------- /lib/markdown/sanitize/sanitize-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/sanitize-html.js -------------------------------------------------------------------------------- /lib/markdown/sanitize/sanitize-html.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/sanitize-html.js.map -------------------------------------------------------------------------------- /lib/markdown/sanitize/tags.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/tags.d.ts -------------------------------------------------------------------------------- /lib/markdown/sanitize/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/tags.js -------------------------------------------------------------------------------- /lib/markdown/sanitize/tags.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/sanitize/tags.js.map -------------------------------------------------------------------------------- /lib/markdown/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/utils.d.ts -------------------------------------------------------------------------------- /lib/markdown/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/utils.js -------------------------------------------------------------------------------- /lib/markdown/utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/markdown/utils.js.map -------------------------------------------------------------------------------- /lib/mathjax/fix-unicode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/fix-unicode.d.ts -------------------------------------------------------------------------------- /lib/mathjax/fix-unicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/fix-unicode.js -------------------------------------------------------------------------------- /lib/mathjax/fix-unicode.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/fix-unicode.js.map -------------------------------------------------------------------------------- /lib/mathjax/helpers/array/ArrayConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/array/ArrayConfiguration.js -------------------------------------------------------------------------------- /lib/mathjax/helpers/array/ArrayMappings.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /lib/mathjax/helpers/array/ArrayMappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/array/ArrayMappings.js -------------------------------------------------------------------------------- /lib/mathjax/helpers/array/ArrayMappings.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/array/ArrayMappings.js.map -------------------------------------------------------------------------------- /lib/mathjax/helpers/array/ArrayMethods.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/array/ArrayMethods.d.ts -------------------------------------------------------------------------------- /lib/mathjax/helpers/array/ArrayMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/array/ArrayMethods.js -------------------------------------------------------------------------------- /lib/mathjax/helpers/array/ArrayMethods.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/array/ArrayMethods.js.map -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconConfiguration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconConfiguration.d.ts -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconConfiguration.js -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconConstants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconConstants.d.ts -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconConstants.js -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconConstants.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconConstants.js.map -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconMethods.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconMethods.d.ts -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconMethods.js -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconMethods.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconMethods.js.map -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconUtil.d.ts -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconUtil.js -------------------------------------------------------------------------------- /lib/mathjax/helpers/icon/IconUtil.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/helpers/icon/IconUtil.js.map -------------------------------------------------------------------------------- /lib/mathjax/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/index.d.ts -------------------------------------------------------------------------------- /lib/mathjax/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/index.js -------------------------------------------------------------------------------- /lib/mathjax/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/index.js.map -------------------------------------------------------------------------------- /lib/mathjax/mathJaxConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/mathJaxConfig.d.ts -------------------------------------------------------------------------------- /lib/mathjax/mathJaxConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/mathJaxConfig.js -------------------------------------------------------------------------------- /lib/mathjax/mathJaxConfig.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/mathJaxConfig.js.map -------------------------------------------------------------------------------- /lib/mathjax/mathjax.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/mathjax.d.ts -------------------------------------------------------------------------------- /lib/mathjax/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/mathjax.js -------------------------------------------------------------------------------- /lib/mathjax/mathjax.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/mathjax.js.map -------------------------------------------------------------------------------- /lib/mathjax/mathml-word.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/mathml-word.d.ts -------------------------------------------------------------------------------- /lib/mathjax/mathml-word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/mathml-word.js -------------------------------------------------------------------------------- /lib/mathjax/mathml-word.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/mathml-word.js.map -------------------------------------------------------------------------------- /lib/mathjax/my-BaseMappings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/my-BaseMappings.d.ts -------------------------------------------------------------------------------- /lib/mathjax/my-BaseMappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/my-BaseMappings.js -------------------------------------------------------------------------------- /lib/mathjax/my-BaseMappings.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/my-BaseMappings.js.map -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/common.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/common.d.ts -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/common.js -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/common.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/common.js.map -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/handlers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/handlers.d.ts -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/handlers.js -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/handlers.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/handlers.js.map -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/helperA.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/helperA.d.ts -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/helperA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/helperA.js -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/helperA.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/helperA.js.map -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/helperLinear.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/helperLinear.d.ts -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/helperLinear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/helperLinear.js -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/index.d.ts -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/index.js -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/index.js.map -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/node-utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/node-utils.d.ts -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/node-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/node-utils.js -------------------------------------------------------------------------------- /lib/mathjax/serialized-ascii/node-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/serialized-ascii/node-utils.js.map -------------------------------------------------------------------------------- /lib/mathjax/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/utils.d.ts -------------------------------------------------------------------------------- /lib/mathjax/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/utils.js -------------------------------------------------------------------------------- /lib/mathjax/utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathjax/utils.js.map -------------------------------------------------------------------------------- /lib/mathpix-markdown-model/check-formula.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathpix-markdown-model/check-formula.d.ts -------------------------------------------------------------------------------- /lib/mathpix-markdown-model/check-formula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathpix-markdown-model/check-formula.js -------------------------------------------------------------------------------- /lib/mathpix-markdown-model/check-formula.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathpix-markdown-model/check-formula.js.map -------------------------------------------------------------------------------- /lib/mathpix-markdown-model/html-page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathpix-markdown-model/html-page.d.ts -------------------------------------------------------------------------------- /lib/mathpix-markdown-model/html-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathpix-markdown-model/html-page.js -------------------------------------------------------------------------------- /lib/mathpix-markdown-model/html-page.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathpix-markdown-model/html-page.js.map -------------------------------------------------------------------------------- /lib/mathpix-markdown-model/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathpix-markdown-model/index.d.ts -------------------------------------------------------------------------------- /lib/mathpix-markdown-model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathpix-markdown-model/index.js -------------------------------------------------------------------------------- /lib/mathpix-markdown-model/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/mathpix-markdown-model/index.js.map -------------------------------------------------------------------------------- /lib/sre/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/sre/index.d.ts -------------------------------------------------------------------------------- /lib/sre/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/sre/index.js -------------------------------------------------------------------------------- /lib/sre/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/sre/index.js.map -------------------------------------------------------------------------------- /lib/sre/sre-browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare const loadSre: (options?: {}) => any; 2 | -------------------------------------------------------------------------------- /lib/sre/sre-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/sre/sre-browser.js -------------------------------------------------------------------------------- /lib/sre/sre-browser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/sre/sre-browser.js.map -------------------------------------------------------------------------------- /lib/sre/sre-node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/sre/sre-node.d.ts -------------------------------------------------------------------------------- /lib/sre/sre-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/sre/sre-node.js -------------------------------------------------------------------------------- /lib/sre/sre-node.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/sre/sre-node.js.map -------------------------------------------------------------------------------- /lib/styles/halpers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/halpers.d.ts -------------------------------------------------------------------------------- /lib/styles/halpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/halpers.js -------------------------------------------------------------------------------- /lib/styles/halpers.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/halpers.js.map -------------------------------------------------------------------------------- /lib/styles/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/index.d.ts -------------------------------------------------------------------------------- /lib/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/index.js -------------------------------------------------------------------------------- /lib/styles/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/index.js.map -------------------------------------------------------------------------------- /lib/styles/styles-code.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-code.d.ts -------------------------------------------------------------------------------- /lib/styles/styles-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-code.js -------------------------------------------------------------------------------- /lib/styles/styles-code.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-code.js.map -------------------------------------------------------------------------------- /lib/styles/styles-container.d.ts: -------------------------------------------------------------------------------- 1 | export declare const ContainerStyle: (useColors?: boolean) => string; 2 | -------------------------------------------------------------------------------- /lib/styles/styles-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-container.js -------------------------------------------------------------------------------- /lib/styles/styles-container.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-container.js.map -------------------------------------------------------------------------------- /lib/styles/styles-fonts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-fonts.d.ts -------------------------------------------------------------------------------- /lib/styles/styles-fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-fonts.js -------------------------------------------------------------------------------- /lib/styles/styles-fonts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-fonts.js.map -------------------------------------------------------------------------------- /lib/styles/styles-lists.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-lists.d.ts -------------------------------------------------------------------------------- /lib/styles/styles-lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-lists.js -------------------------------------------------------------------------------- /lib/styles/styles-lists.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-lists.js.map -------------------------------------------------------------------------------- /lib/styles/styles-tabular.d.ts: -------------------------------------------------------------------------------- 1 | export declare const tabularStyles: (useColors?: boolean) => string; 2 | -------------------------------------------------------------------------------- /lib/styles/styles-tabular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-tabular.js -------------------------------------------------------------------------------- /lib/styles/styles-tabular.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/styles/styles-tabular.js.map -------------------------------------------------------------------------------- /lib/yaml-parser/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/yaml-parser/index.d.ts -------------------------------------------------------------------------------- /lib/yaml-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/yaml-parser/index.js -------------------------------------------------------------------------------- /lib/yaml-parser/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/lib/yaml-parser/index.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/package.json -------------------------------------------------------------------------------- /src/bundle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/bundle.tsx -------------------------------------------------------------------------------- /src/components/mathpix-loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/components/mathpix-loader/index.tsx -------------------------------------------------------------------------------- /src/components/mathpix-markdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/components/mathpix-markdown/index.tsx -------------------------------------------------------------------------------- /src/contex-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/contex-menu/index.ts -------------------------------------------------------------------------------- /src/contex-menu/menu/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/contex-menu/menu/consts.ts -------------------------------------------------------------------------------- /src/contex-menu/menu/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/contex-menu/menu/helper.ts -------------------------------------------------------------------------------- /src/contex-menu/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/contex-menu/menu/index.ts -------------------------------------------------------------------------------- /src/contex-menu/menu/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/contex-menu/menu/interfaces.ts -------------------------------------------------------------------------------- /src/contex-menu/menu/menu-item-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/contex-menu/menu/menu-item-actions.ts -------------------------------------------------------------------------------- /src/contex-menu/menu/menu-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/contex-menu/menu/menu-item.ts -------------------------------------------------------------------------------- /src/contex-menu/menu/menu-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/contex-menu/menu/menu-items.ts -------------------------------------------------------------------------------- /src/contex-menu/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/contex-menu/styles.ts -------------------------------------------------------------------------------- /src/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/context-menu.tsx -------------------------------------------------------------------------------- /src/copy-to-clipboard-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/copy-to-clipboard-code.tsx -------------------------------------------------------------------------------- /src/copy-to-clipboard/clipboard-copy-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/copy-to-clipboard/clipboard-copy-element.ts -------------------------------------------------------------------------------- /src/copy-to-clipboard/clipboard-copy-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/copy-to-clipboard/clipboard-copy-styles.ts -------------------------------------------------------------------------------- /src/copy-to-clipboard/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/copy-to-clipboard/clipboard.ts -------------------------------------------------------------------------------- /src/copy-to-clipboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/copy-to-clipboard/index.ts -------------------------------------------------------------------------------- /src/helpers/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/consts.ts -------------------------------------------------------------------------------- /src/helpers/icons/css-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/icons/css-colors.ts -------------------------------------------------------------------------------- /src/helpers/icons/emoji-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/icons/emoji-icons.ts -------------------------------------------------------------------------------- /src/helpers/icons/fa-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/icons/fa-icons.ts -------------------------------------------------------------------------------- /src/helpers/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/icons/index.ts -------------------------------------------------------------------------------- /src/helpers/icons/squared-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/icons/squared-icons.ts -------------------------------------------------------------------------------- /src/helpers/icons/unicode-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/icons/unicode-icons.ts -------------------------------------------------------------------------------- /src/helpers/normalize-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/normalize-link.ts -------------------------------------------------------------------------------- /src/helpers/parse-mmd-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/parse-mmd-element.ts -------------------------------------------------------------------------------- /src/helpers/parze_link_destination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/parze_link_destination.ts -------------------------------------------------------------------------------- /src/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/helpers/utils.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/markdown/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common.ts -------------------------------------------------------------------------------- /src/markdown/common/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/consts.ts -------------------------------------------------------------------------------- /src/markdown/common/convert-math-to-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/convert-math-to-html.ts -------------------------------------------------------------------------------- /src/markdown/common/counters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/counters.ts -------------------------------------------------------------------------------- /src/markdown/common/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/csv.ts -------------------------------------------------------------------------------- /src/markdown/common/html-re.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/html-re.ts -------------------------------------------------------------------------------- /src/markdown/common/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/labels.ts -------------------------------------------------------------------------------- /src/markdown/common/mmdRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/mmdRules.ts -------------------------------------------------------------------------------- /src/markdown/common/mmdRulesToDisable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/mmdRulesToDisable.ts -------------------------------------------------------------------------------- /src/markdown/common/separating-span.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/separating-span.ts -------------------------------------------------------------------------------- /src/markdown/common/table-markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/table-markdown.ts -------------------------------------------------------------------------------- /src/markdown/common/text-dimentions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/text-dimentions.ts -------------------------------------------------------------------------------- /src/markdown/common/textWidthByTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/textWidthByTokens.ts -------------------------------------------------------------------------------- /src/markdown/common/tsv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/tsv.ts -------------------------------------------------------------------------------- /src/markdown/common/validate-mathML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/common/validate-mathML.ts -------------------------------------------------------------------------------- /src/markdown/dom-adaptor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/dom-adaptor/index.ts -------------------------------------------------------------------------------- /src/markdown/highlight/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/highlight/common.ts -------------------------------------------------------------------------------- /src/markdown/highlight/highlight-math-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/highlight/highlight-math-token.ts -------------------------------------------------------------------------------- /src/markdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/index.ts -------------------------------------------------------------------------------- /src/markdown/inline-styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/inline-styles/index.ts -------------------------------------------------------------------------------- /src/markdown/mathpix-markdown-plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mathpix-markdown-plugins.ts -------------------------------------------------------------------------------- /src/markdown/md-ascii/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-ascii/index.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/begin-align.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/begin-align.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/begin-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/begin-table.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/helper.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/image-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/image-block.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/lists/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/lists/index.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/lists/re-level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/lists/re-level.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/mathml-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/mathml-block.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/mmd-fence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/mmd-fence.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/mmd-html-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/mmd-html-block.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/parse-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/parse-error.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/renewcommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/renewcommand.ts -------------------------------------------------------------------------------- /src/markdown/md-block-rule/svg_block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-block-rule/svg_block.ts -------------------------------------------------------------------------------- /src/markdown/md-chemistry/chemistry-drawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-chemistry/chemistry-drawer.ts -------------------------------------------------------------------------------- /src/markdown/md-chemistry/chemistry-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-chemistry/chemistry-options.ts -------------------------------------------------------------------------------- /src/markdown/md-chemistry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-chemistry/index.ts -------------------------------------------------------------------------------- /src/markdown/md-core-rules/set-positions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-core-rules/set-positions.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/core-inline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/core-inline.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/diagbox-inline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/diagbox-inline.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/image.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/includegraphics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/includegraphics.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/lists.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/mathml-inline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/mathml-inline.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/mmd-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/mmd-icon.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/refs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/refs.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/renewcommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/renewcommand.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/tabular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/tabular.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/text-collapse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/text-collapse.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/text-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/text-mode.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/underline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/underline.ts -------------------------------------------------------------------------------- /src/markdown/md-inline-rule/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-inline-rule/utils.ts -------------------------------------------------------------------------------- /src/markdown/md-latex-footnotes/block-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-latex-footnotes/block-rule.ts -------------------------------------------------------------------------------- /src/markdown/md-latex-footnotes/core-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-latex-footnotes/core-rule.ts -------------------------------------------------------------------------------- /src/markdown/md-latex-footnotes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-latex-footnotes/index.ts -------------------------------------------------------------------------------- /src/markdown/md-latex-footnotes/inline-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-latex-footnotes/inline-rule.ts -------------------------------------------------------------------------------- /src/markdown/md-latex-footnotes/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-latex-footnotes/interfaces.ts -------------------------------------------------------------------------------- /src/markdown/md-latex-footnotes/render-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-latex-footnotes/render-rule.ts -------------------------------------------------------------------------------- /src/markdown/md-latex-footnotes/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-latex-footnotes/utils.ts -------------------------------------------------------------------------------- /src/markdown/md-renderer-rules/breaks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-renderer-rules/breaks.ts -------------------------------------------------------------------------------- /src/markdown/md-renderer-rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-renderer-rules/index.ts -------------------------------------------------------------------------------- /src/markdown/md-renderer-rules/render-lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-renderer-rules/render-lists.ts -------------------------------------------------------------------------------- /src/markdown/md-renderer-rules/underline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-renderer-rules/underline.ts -------------------------------------------------------------------------------- /src/markdown/md-svg-to-base64/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-svg-to-base64/base64.ts -------------------------------------------------------------------------------- /src/markdown/md-svg-to-base64/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-svg-to-base64/index.ts -------------------------------------------------------------------------------- /src/markdown/md-theorem/block-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-theorem/block-rule.ts -------------------------------------------------------------------------------- /src/markdown/md-theorem/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-theorem/helper.ts -------------------------------------------------------------------------------- /src/markdown/md-theorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-theorem/index.ts -------------------------------------------------------------------------------- /src/markdown/md-theorem/inline-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/md-theorem/inline-rule.ts -------------------------------------------------------------------------------- /src/markdown/mdHighlightCodePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdHighlightCodePlugin.ts -------------------------------------------------------------------------------- /src/markdown/mdOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdOptions.ts -------------------------------------------------------------------------------- /src/markdown/mdPluginAnchor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdPluginAnchor.ts -------------------------------------------------------------------------------- /src/markdown/mdPluginCollapsible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdPluginCollapsible.ts -------------------------------------------------------------------------------- /src/markdown/mdPluginConfigured.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdPluginConfigured.ts -------------------------------------------------------------------------------- /src/markdown/mdPluginLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdPluginLists.ts -------------------------------------------------------------------------------- /src/markdown/mdPluginRaw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdPluginRaw.ts -------------------------------------------------------------------------------- /src/markdown/mdPluginSeparateForBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdPluginSeparateForBlock.ts -------------------------------------------------------------------------------- /src/markdown/mdPluginTOC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdPluginTOC.ts -------------------------------------------------------------------------------- /src/markdown/mdPluginTableTabular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdPluginTableTabular.ts -------------------------------------------------------------------------------- /src/markdown/mdPluginText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdPluginText.ts -------------------------------------------------------------------------------- /src/markdown/mdSetPositionsAndHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/mdSetPositionsAndHighlight.ts -------------------------------------------------------------------------------- /src/markdown/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/rules.ts -------------------------------------------------------------------------------- /src/markdown/sanitize/attrs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/sanitize/attrs.ts -------------------------------------------------------------------------------- /src/markdown/sanitize/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/sanitize/consts.ts -------------------------------------------------------------------------------- /src/markdown/sanitize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/sanitize/index.ts -------------------------------------------------------------------------------- /src/markdown/sanitize/sanitize-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/sanitize/sanitize-html.ts -------------------------------------------------------------------------------- /src/markdown/sanitize/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/sanitize/tags.ts -------------------------------------------------------------------------------- /src/markdown/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/markdown/utils.ts -------------------------------------------------------------------------------- /src/mathjax/fix-unicode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/fix-unicode.ts -------------------------------------------------------------------------------- /src/mathjax/helpers/array/ArrayConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/helpers/array/ArrayConfiguration.ts -------------------------------------------------------------------------------- /src/mathjax/helpers/array/ArrayMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/helpers/array/ArrayMappings.ts -------------------------------------------------------------------------------- /src/mathjax/helpers/array/ArrayMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/helpers/array/ArrayMethods.ts -------------------------------------------------------------------------------- /src/mathjax/helpers/icon/IconConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/helpers/icon/IconConfiguration.ts -------------------------------------------------------------------------------- /src/mathjax/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/index.ts -------------------------------------------------------------------------------- /src/mathjax/mathJaxConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/mathJaxConfig.ts -------------------------------------------------------------------------------- /src/mathjax/mathjax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/mathjax.ts -------------------------------------------------------------------------------- /src/mathjax/mathml-word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/mathml-word.ts -------------------------------------------------------------------------------- /src/mathjax/my-BaseMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/my-BaseMappings.ts -------------------------------------------------------------------------------- /src/mathjax/serialized-ascii/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/serialized-ascii/common.ts -------------------------------------------------------------------------------- /src/mathjax/serialized-ascii/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/serialized-ascii/handlers.ts -------------------------------------------------------------------------------- /src/mathjax/serialized-ascii/helperA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/serialized-ascii/helperA.ts -------------------------------------------------------------------------------- /src/mathjax/serialized-ascii/helperLinear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/serialized-ascii/helperLinear.ts -------------------------------------------------------------------------------- /src/mathjax/serialized-ascii/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/serialized-ascii/index.ts -------------------------------------------------------------------------------- /src/mathjax/serialized-ascii/node-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/serialized-ascii/node-utils.ts -------------------------------------------------------------------------------- /src/mathjax/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathjax/utils.ts -------------------------------------------------------------------------------- /src/mathpix-markdown-model/check-formula.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathpix-markdown-model/check-formula.ts -------------------------------------------------------------------------------- /src/mathpix-markdown-model/html-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathpix-markdown-model/html-page.ts -------------------------------------------------------------------------------- /src/mathpix-markdown-model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/mathpix-markdown-model/index.ts -------------------------------------------------------------------------------- /src/sre/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/sre/index.ts -------------------------------------------------------------------------------- /src/sre/sre-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/sre/sre-browser.ts -------------------------------------------------------------------------------- /src/sre/sre-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/sre/sre-node.ts -------------------------------------------------------------------------------- /src/styles/halpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/styles/halpers.ts -------------------------------------------------------------------------------- /src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/styles/index.ts -------------------------------------------------------------------------------- /src/styles/styles-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/styles/styles-code.ts -------------------------------------------------------------------------------- /src/styles/styles-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/styles/styles-container.ts -------------------------------------------------------------------------------- /src/styles/styles-fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/styles/styles-fonts.ts -------------------------------------------------------------------------------- /src/styles/styles-lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/styles/styles-lists.ts -------------------------------------------------------------------------------- /src/styles/styles-tabular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/styles/styles-tabular.ts -------------------------------------------------------------------------------- /src/yaml-parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/src/yaml-parser/index.ts -------------------------------------------------------------------------------- /tests/_accessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_accessibility.js -------------------------------------------------------------------------------- /tests/_ascii-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_ascii-render.js -------------------------------------------------------------------------------- /tests/_ascii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_ascii.js -------------------------------------------------------------------------------- /tests/_captions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_captions.js -------------------------------------------------------------------------------- /tests/_csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_csv.js -------------------------------------------------------------------------------- /tests/_data/_accessibility/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_accessibility/_data.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_asciiData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_asciiData.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_asciiLongDiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_asciiLongDiv.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_asciiMore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_asciiMore.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_asciiOperationSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_asciiOperationSymbols.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_asciiSpace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_asciiSpace.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_asciiTimes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_asciiTimes.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_ascii_frac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_ascii_frac.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_ascii_lcm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_ascii_lcm.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_ascii_liner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_ascii_liner.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_ascii_sup_with_wedge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_ascii_sup_with_wedge.js -------------------------------------------------------------------------------- /tests/_data/_ascii/_ascii_vertical_math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_ascii/_ascii_vertical_math.js -------------------------------------------------------------------------------- /tests/_data/_captions/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_captions/_data.js -------------------------------------------------------------------------------- /tests/_data/_csv/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_csv/_data.js -------------------------------------------------------------------------------- /tests/_data/_footnotes/_html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes/_html.js -------------------------------------------------------------------------------- /tests/_data/_footnotes/_mmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes/_mmd.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_data-footnote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_data-footnote.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_01.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_02.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_03.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_04.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_05.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_08.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_09.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_10.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_11.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_12.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_html/_html_13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_html/_html_13.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_01.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_02.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_03.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_04.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_05.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_08.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_09.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_10.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_11.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_12.js -------------------------------------------------------------------------------- /tests/_data/_footnotes_latex/_mmd/_mmd_13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_footnotes_latex/_mmd/_mmd_13.js -------------------------------------------------------------------------------- /tests/_data/_highlights/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_highlights/_data.js -------------------------------------------------------------------------------- /tests/_data/_html-tag-matching/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_html-tag-matching/_data.js -------------------------------------------------------------------------------- /tests/_data/_icon/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_icon/_data.js -------------------------------------------------------------------------------- /tests/_data/_image/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_image/_data.js -------------------------------------------------------------------------------- /tests/_data/_labels/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_labels/_data.js -------------------------------------------------------------------------------- /tests/_data/_latex-text/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_latex-text/_data.js -------------------------------------------------------------------------------- /tests/_data/_latex-text/_pageBreak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_latex-text/_pageBreak.js -------------------------------------------------------------------------------- /tests/_data/_lists/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_lists/_data.js -------------------------------------------------------------------------------- /tests/_data/_markdownToHTMLWithSize/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_markdownToHTMLWithSize/_data.js -------------------------------------------------------------------------------- /tests/_data/_mathjax/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_mathjax/_data.js -------------------------------------------------------------------------------- /tests/_data/_mathml_word/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_mathml_word/_data.js -------------------------------------------------------------------------------- /tests/_data/_nonumbers/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_nonumbers/_data.js -------------------------------------------------------------------------------- /tests/_data/_parseMarkdownByHTML/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_parseMarkdownByHTML/_data.js -------------------------------------------------------------------------------- /tests/_data/_pluginText/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_pluginText/_data.js -------------------------------------------------------------------------------- /tests/_data/_refs/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_refs/_data.js -------------------------------------------------------------------------------- /tests/_data/_renderOprions/_html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_renderOprions/_html.js -------------------------------------------------------------------------------- /tests/_data/_renderOprions/_mmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_renderOprions/_mmd.js -------------------------------------------------------------------------------- /tests/_data/_sanitizeHtml/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_sanitizeHtml/_data.js -------------------------------------------------------------------------------- /tests/_data/_sections/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_sections/_data.js -------------------------------------------------------------------------------- /tests/_data/_sepatation_span/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_sepatation_span/_data.js -------------------------------------------------------------------------------- /tests/_data/_sepatation_span/_data_fence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_sepatation_span/_data_fence.js -------------------------------------------------------------------------------- /tests/_data/_sepatation_span/_data_fence_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_sepatation_span/_data_fence_tr.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_data1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_data1.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_data2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_data2.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_data3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_data3.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_data4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_data4.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_data5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_data5.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_data6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_data6.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_data_CCOc1ccc2oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_data_CCOc1ccc2oc.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_markush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_markush.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_more/_chembl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_more/_chembl.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_more/_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_more/_new.js -------------------------------------------------------------------------------- /tests/_data/_smiles/_simple_aromatic_rings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smiles/_simple_aromatic_rings.js -------------------------------------------------------------------------------- /tests/_data/_smilesParse/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_smilesParse/_data.js -------------------------------------------------------------------------------- /tests/_data/_svg_chart/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_svg_chart/_data.js -------------------------------------------------------------------------------- /tests/_data/_svg_chem/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_svg_chem/_data.js -------------------------------------------------------------------------------- /tests/_data/_svg_table/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_svg_table/_data.js -------------------------------------------------------------------------------- /tests/_data/_table-markdown/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_table-markdown/_data.js -------------------------------------------------------------------------------- /tests/_data/_tables/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tables/_data.js -------------------------------------------------------------------------------- /tests/_data/_tabular/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tabular/_data.js -------------------------------------------------------------------------------- /tests/_data/_tabular/_data_digbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tabular/_data_digbox.js -------------------------------------------------------------------------------- /tests/_data/_tabular/_data_sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tabular/_data_sub.js -------------------------------------------------------------------------------- /tests/_data/_theorem/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_theorem/_data.js -------------------------------------------------------------------------------- /tests/_data/_toc/_data-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_toc/_data-list.js -------------------------------------------------------------------------------- /tests/_data/_toc/_data-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_toc/_data-summary.js -------------------------------------------------------------------------------- /tests/_data/_tokenPositions/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tokenPositions/_data.js -------------------------------------------------------------------------------- /tests/_data/_tokenPositions/_data_abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tokenPositions/_data_abstract.js -------------------------------------------------------------------------------- /tests/_data/_tokenPositions/_data_author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tokenPositions/_data_author.js -------------------------------------------------------------------------------- /tests/_data/_tokenPositions/_data_lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tokenPositions/_data_lists.js -------------------------------------------------------------------------------- /tests/_data/_tokenPositions/_data_sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tokenPositions/_data_sections.js -------------------------------------------------------------------------------- /tests/_data/_tsv/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tsv/_data.js -------------------------------------------------------------------------------- /tests/_data/_tsv/_dataFormats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tsv/_dataFormats.js -------------------------------------------------------------------------------- /tests/_data/_tsv_with_array/_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_data/_tsv_with_array/_data.js -------------------------------------------------------------------------------- /tests/_footnotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_footnotes.js -------------------------------------------------------------------------------- /tests/_footnotes_latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_footnotes_latex.js -------------------------------------------------------------------------------- /tests/_highlights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_highlights.js -------------------------------------------------------------------------------- /tests/_html-tag-matching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_html-tag-matching.js -------------------------------------------------------------------------------- /tests/_icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_icon.js -------------------------------------------------------------------------------- /tests/_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_image.js -------------------------------------------------------------------------------- /tests/_labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_labels.js -------------------------------------------------------------------------------- /tests/_latex-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_latex-text.js -------------------------------------------------------------------------------- /tests/_lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_lists.js -------------------------------------------------------------------------------- /tests/_markdownToHTMLWithSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_markdownToHTMLWithSize.js -------------------------------------------------------------------------------- /tests/_mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_mathjax.js -------------------------------------------------------------------------------- /tests/_mathml_word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_mathml_word.js -------------------------------------------------------------------------------- /tests/_nonumbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_nonumbers.js -------------------------------------------------------------------------------- /tests/_parseMarkdownByHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_parseMarkdownByHTML.js -------------------------------------------------------------------------------- /tests/_pluginText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_pluginText.js -------------------------------------------------------------------------------- /tests/_refs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_refs.js -------------------------------------------------------------------------------- /tests/_renderOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_renderOptions.js -------------------------------------------------------------------------------- /tests/_sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_sanitize.js -------------------------------------------------------------------------------- /tests/_sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_sections.js -------------------------------------------------------------------------------- /tests/_sepatation_span.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_sepatation_span.js -------------------------------------------------------------------------------- /tests/_smiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_smiles.js -------------------------------------------------------------------------------- /tests/_smilesParse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_smilesParse.js -------------------------------------------------------------------------------- /tests/_svgChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_svgChart.js -------------------------------------------------------------------------------- /tests/_svgChem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_svgChem.js -------------------------------------------------------------------------------- /tests/_svgTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_svgTable.js -------------------------------------------------------------------------------- /tests/_table-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_table-markdown.js -------------------------------------------------------------------------------- /tests/_tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_tables.js -------------------------------------------------------------------------------- /tests/_tabular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_tabular.js -------------------------------------------------------------------------------- /tests/_theorem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_theorem.js -------------------------------------------------------------------------------- /tests/_toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_toc.js -------------------------------------------------------------------------------- /tests/_tokenPositions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_tokenPositions.js -------------------------------------------------------------------------------- /tests/_tsv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_tsv.js -------------------------------------------------------------------------------- /tests/_tsv_with_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tests/_tsv_with_array.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathpix/mathpix-markdown-it/HEAD/webpack.dev.js --------------------------------------------------------------------------------