├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .jsinspectrc ├── .travis.yml ├── LICENSE ├── README.md ├── example.js ├── index.js ├── package.json └── test └── index.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayou/hexo-image-caption/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayou/hexo-image-caption/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /.jsinspectrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayou/hexo-image-caption/HEAD/.jsinspectrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayou/hexo-image-caption/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayou/hexo-image-caption/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayou/hexo-image-caption/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayou/hexo-image-caption/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayou/hexo-image-caption/HEAD/package.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wayou/hexo-image-caption/HEAD/test/index.test.js --------------------------------------------------------------------------------