├── .gitignore ├── LICENSE ├── README.md ├── book ├── test.css └── test.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitbookIO/plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitbookIO/plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitbookIO/plugin/HEAD/README.md -------------------------------------------------------------------------------- /book/test.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: red; 3 | } -------------------------------------------------------------------------------- /book/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitbookIO/plugin/HEAD/book/test.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitbookIO/plugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitbookIO/plugin/HEAD/package.json --------------------------------------------------------------------------------