├── .coveralls.yml ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src ├── footnotes.js └── hint.min.css └── test ├── .eslintrc.json ├── footnotes.spec.js └── mocha.opts /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-pro 2 | repo_token: RWrQ1T7sEp5BRGTwShqGGOCLx7zTMubV3 -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchen0x/hexo-reference/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | *.iml 4 | coverage 5 | *.log -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchen0x/hexo-reference/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchen0x/hexo-reference/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchen0x/hexo-reference/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchen0x/hexo-reference/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchen0x/hexo-reference/HEAD/package.json -------------------------------------------------------------------------------- /src/footnotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchen0x/hexo-reference/HEAD/src/footnotes.js -------------------------------------------------------------------------------- /src/hint.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchen0x/hexo-reference/HEAD/src/hint.min.css -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchen0x/hexo-reference/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/footnotes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchen0x/hexo-reference/HEAD/test/footnotes.spec.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec --------------------------------------------------------------------------------