├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ └── unit.yml ├── .gitignore ├── .husky └── pre-commit ├── LICENSE ├── README.md ├── package.json ├── sample-code-block.png ├── src ├── all.js ├── common.js ├── generator.js └── index.js ├── test.js └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: timlrx -------------------------------------------------------------------------------- /.github/workflows/unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/.github/workflows/unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | coverage 5 | dist/ -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/package.json -------------------------------------------------------------------------------- /sample-code-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/sample-code-block.png -------------------------------------------------------------------------------- /src/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/src/all.js -------------------------------------------------------------------------------- /src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/src/common.js -------------------------------------------------------------------------------- /src/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/src/generator.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/src/index.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/rehype-prism-plus/HEAD/tsconfig.json --------------------------------------------------------------------------------