├── .eslintignore ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── linter.yml │ └── tester.yml ├── .gitignore ├── .mocharc.yml ├── .npmrc ├── LICENSE ├── README.md ├── dist └── style.css ├── index.js ├── lib ├── inject │ ├── katex.js │ └── mathjax.js ├── katex.js └── mathjax.js ├── package.json └── test ├── .eslintrc.json └── index.js /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | tmp/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "hexo" 3 | } -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/tester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/.github/workflows/tester.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | node_modules/ 4 | package-lock.json 5 | tmp/ 6 | *.log 7 | coverage -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/README.md -------------------------------------------------------------------------------- /dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/dist/style.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/index.js -------------------------------------------------------------------------------- /lib/inject/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/lib/inject/katex.js -------------------------------------------------------------------------------- /lib/inject/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/lib/inject/mathjax.js -------------------------------------------------------------------------------- /lib/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/lib/katex.js -------------------------------------------------------------------------------- /lib/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/lib/mathjax.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-math/HEAD/test/index.js --------------------------------------------------------------------------------