├── .editorconfig ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── README.zh.md ├── dist └── bundle.js ├── filetoc.config.js ├── index.js ├── lib ├── config.ts ├── constant.ts ├── createToc.ts ├── index.ts └── utilis.ts ├── package.json ├── pnpm-lock.yaml ├── rollup.config.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .husky 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /node_modules/** 2 | 3 | 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["filetoc"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/README.zh.md -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /filetoc.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/filetoc.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/index.js -------------------------------------------------------------------------------- /lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/lib/config.ts -------------------------------------------------------------------------------- /lib/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/lib/constant.ts -------------------------------------------------------------------------------- /lib/createToc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/lib/createToc.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/utilis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/lib/utilis.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/rollup.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfan0/filetoc/HEAD/tsconfig.json --------------------------------------------------------------------------------