├── .all-contributorsrc ├── .changeset ├── README.md └── config.json ├── .github └── workflows │ ├── feature.yml │ ├── release.yml │ └── staging.yml ├── .gitignore ├── .npmrc ├── .tool-versions ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bun.lock ├── eslint.config.js ├── package.json ├── src ├── __snapshots__ │ └── index.test.js.snap ├── index.js └── index.test.js └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/.github/workflows/feature.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/.github/workflows/staging.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | bun 1.3.2 2 | nodejs 20.17.0 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/bun.lock -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/package.json -------------------------------------------------------------------------------- /src/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/src/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/src/index.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockchalkwushock/rehype-code-titles/HEAD/tsconfig.json --------------------------------------------------------------------------------