├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── lib └── logic.js └── package.json /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xu-song/hexo-auto-category/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xu-song/hexo-auto-category/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xu-song/hexo-auto-category/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xu-song/hexo-auto-category/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xu-song/hexo-auto-category/HEAD/index.js -------------------------------------------------------------------------------- /lib/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xu-song/hexo-auto-category/HEAD/lib/logic.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xu-song/hexo-auto-category/HEAD/package.json --------------------------------------------------------------------------------