├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── README.md ├── _layouts └── website │ └── page.html ├── assets └── plugin.js ├── index.js ├── package.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/gitbook-plugin-rss/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/gitbook-plugin-rss/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/gitbook-plugin-rss/HEAD/README.md -------------------------------------------------------------------------------- /_layouts/website/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/gitbook-plugin-rss/HEAD/_layouts/website/page.html -------------------------------------------------------------------------------- /assets/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/gitbook-plugin-rss/HEAD/assets/plugin.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/gitbook-plugin-rss/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/gitbook-plugin-rss/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/gitbook-plugin-rss/HEAD/yarn.lock --------------------------------------------------------------------------------