├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── bb.yml │ └── main.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .remarkignore ├── license ├── package.json ├── packages ├── rehype-katex │ ├── .npmrc │ ├── index.js │ ├── lib │ │ └── index.js │ ├── package.json │ ├── readme.md │ ├── test.js │ └── tsconfig.json ├── rehype-mathjax │ ├── .npmrc │ ├── browser.js │ ├── chtml.js │ ├── lib │ │ ├── browser.js │ │ ├── chtml.js │ │ ├── create-plugin.js │ │ ├── create-renderer.js │ │ └── svg.js │ ├── package.json │ ├── readme.md │ ├── svg.js │ ├── test │ │ ├── fixture │ │ │ ├── document-svg.html │ │ │ ├── document.html │ │ │ ├── double-svg.html │ │ │ ├── double.html │ │ │ ├── equation-numbering-1-chtml.html │ │ │ ├── equation-numbering-1-svg.html │ │ │ ├── equation-numbering-1.html │ │ │ ├── equation-numbering-2-svg.html │ │ │ ├── equation-numbering-2.html │ │ │ ├── markdown-code-fenced-svg.html │ │ │ ├── markdown-svg.html │ │ │ ├── markdown.md │ │ │ ├── none-svg.html │ │ │ ├── none.html │ │ │ ├── small-browser-delimiters.html │ │ │ ├── small-browser.html │ │ │ ├── small-chtml.html │ │ │ ├── small-svg.html │ │ │ └── small.html │ │ └── index.js │ └── tsconfig.json ├── remark-html-katex │ └── readme.md └── remark-math │ ├── .npmrc │ ├── index.js │ ├── lib │ └── index.js │ ├── package.json │ ├── readme.md │ ├── test.js │ └── tsconfig.json ├── readme.md └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/bb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/.github/workflows/bb.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.md 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.remarkignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/package.json -------------------------------------------------------------------------------- /packages/rehype-katex/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/rehype-katex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-katex/index.js -------------------------------------------------------------------------------- /packages/rehype-katex/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-katex/lib/index.js -------------------------------------------------------------------------------- /packages/rehype-katex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-katex/package.json -------------------------------------------------------------------------------- /packages/rehype-katex/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-katex/readme.md -------------------------------------------------------------------------------- /packages/rehype-katex/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-katex/test.js -------------------------------------------------------------------------------- /packages/rehype-katex/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/rehype-mathjax/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/rehype-mathjax/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/browser.js -------------------------------------------------------------------------------- /packages/rehype-mathjax/chtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/chtml.js -------------------------------------------------------------------------------- /packages/rehype-mathjax/lib/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/lib/browser.js -------------------------------------------------------------------------------- /packages/rehype-mathjax/lib/chtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/lib/chtml.js -------------------------------------------------------------------------------- /packages/rehype-mathjax/lib/create-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/lib/create-plugin.js -------------------------------------------------------------------------------- /packages/rehype-mathjax/lib/create-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/lib/create-renderer.js -------------------------------------------------------------------------------- /packages/rehype-mathjax/lib/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/lib/svg.js -------------------------------------------------------------------------------- /packages/rehype-mathjax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/package.json -------------------------------------------------------------------------------- /packages/rehype-mathjax/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/readme.md -------------------------------------------------------------------------------- /packages/rehype-mathjax/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/svg.js -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/document-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/document-svg.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/document.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/double-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/double-svg.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/double.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/double.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/equation-numbering-1-chtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/equation-numbering-1-chtml.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/equation-numbering-1-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/equation-numbering-1-svg.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/equation-numbering-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/equation-numbering-1.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/equation-numbering-2-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/equation-numbering-2-svg.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/equation-numbering-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/equation-numbering-2.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/markdown-code-fenced-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/markdown-code-fenced-svg.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/markdown-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/markdown-svg.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/markdown.md -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/none-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/none-svg.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/none.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/none.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/small-browser-delimiters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/small-browser-delimiters.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/small-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/small-browser.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/small-chtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/small-chtml.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/small-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/small-svg.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/fixture/small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/fixture/small.html -------------------------------------------------------------------------------- /packages/rehype-mathjax/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/rehype-mathjax/test/index.js -------------------------------------------------------------------------------- /packages/rehype-mathjax/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-html-katex/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/remark-html-katex/readme.md -------------------------------------------------------------------------------- /packages/remark-math/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-math/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/remark-math/index.js -------------------------------------------------------------------------------- /packages/remark-math/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/remark-math/lib/index.js -------------------------------------------------------------------------------- /packages/remark-math/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/remark-math/package.json -------------------------------------------------------------------------------- /packages/remark-math/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/remark-math/readme.md -------------------------------------------------------------------------------- /packages/remark-math/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/packages/remark-math/test.js -------------------------------------------------------------------------------- /packages/remark-math/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/readme.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-math/HEAD/tsconfig.json --------------------------------------------------------------------------------