├── .github └── workflows │ └── regression.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── index.js ├── package.json ├── pnpm-lock.yaml └── test ├── fixtures.js └── plugin.test.js /.github/workflows/regression.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microflash/remark-figure-caption/main/.github/workflows/regression.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microflash/remark-figure-caption/main/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microflash/remark-figure-caption/main/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microflash/remark-figure-caption/main/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microflash/remark-figure-caption/main/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microflash/remark-figure-caption/main/pnpm-lock.yaml -------------------------------------------------------------------------------- /test/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microflash/remark-figure-caption/main/test/fixtures.js -------------------------------------------------------------------------------- /test/plugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microflash/remark-figure-caption/main/test/plugin.test.js --------------------------------------------------------------------------------