├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src └── index.ts ├── test ├── fixtures │ ├── basic.md │ ├── basic.output.vue │ ├── script.md │ ├── script.output.vue │ ├── style.md │ └── style.output.vue └── index.test.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | *.output.* 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@antfu" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [antfu] 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-workspace-root-check=true 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please refer to https://github.com/antfu/contribute 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/fixtures/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/test/fixtures/basic.md -------------------------------------------------------------------------------- /test/fixtures/basic.output.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/test/fixtures/basic.output.vue -------------------------------------------------------------------------------- /test/fixtures/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/test/fixtures/script.md -------------------------------------------------------------------------------- /test/fixtures/script.output.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/test/fixtures/script.output.vue -------------------------------------------------------------------------------- /test/fixtures/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/test/fixtures/style.md -------------------------------------------------------------------------------- /test/fixtures/style.output.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/test/fixtures/style.output.vue -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/rehype-vue-sfc/HEAD/tsconfig.json --------------------------------------------------------------------------------