├── .gitignore ├── README.md ├── docs-assets └── thumbnail.jpg ├── docs ├── assets │ ├── book_angular2.jpg │ ├── book_apolloreact.jpg │ ├── book_express.jpg │ ├── book_lodash.jpg │ ├── book_react.jpg │ ├── book_sass.jpg │ └── book_underscore.jpg ├── download │ ├── angular2.epub │ ├── apolloreact.epub │ ├── elm.epub │ ├── express.epub │ ├── lodash.epub │ ├── mobx.epub │ ├── react.epub │ ├── sass.epub │ ├── socketio.epub │ ├── underscore.epub │ └── vue.epub ├── ereader.jpg ├── gallery-bg.jpg ├── index.html ├── lib │ └── cutereset.css ├── og.jpg └── style.css ├── index.js ├── package.json └── src ├── getAboutPage.js ├── run.js ├── strategies ├── angular2 │ ├── clean.js │ ├── cover.jpg │ ├── index.js │ └── scrapper.js ├── apollo-react │ ├── cover.jpg │ ├── index.js │ └── scrapperMd.js ├── express │ ├── cover.jpg │ ├── index.js │ └── scrapper.js ├── lodash │ ├── clean.js │ ├── cover.jpg │ ├── epub.css │ ├── index.js │ ├── scrapper.js │ └── scrapperMd.js ├── react │ ├── clean.js │ ├── cover.jpg │ ├── epub.css │ ├── index.js │ ├── scrapper.js │ └── scrapperMd.js ├── sass │ ├── clean.js │ ├── cover.jpg │ ├── epub.css │ ├── index.js │ ├── scrapper.js │ └── scrapperMd.js └── underscore │ ├── cover.jpg │ ├── index.js │ └── scrapper.js ├── tocObjToHtml.js └── tocToArray.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | _tmp 4 | *.log 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/README.md -------------------------------------------------------------------------------- /docs-assets/thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs-assets/thumbnail.jpg -------------------------------------------------------------------------------- /docs/assets/book_angular2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/assets/book_angular2.jpg -------------------------------------------------------------------------------- /docs/assets/book_apolloreact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/assets/book_apolloreact.jpg -------------------------------------------------------------------------------- /docs/assets/book_express.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/assets/book_express.jpg -------------------------------------------------------------------------------- /docs/assets/book_lodash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/assets/book_lodash.jpg -------------------------------------------------------------------------------- /docs/assets/book_react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/assets/book_react.jpg -------------------------------------------------------------------------------- /docs/assets/book_sass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/assets/book_sass.jpg -------------------------------------------------------------------------------- /docs/assets/book_underscore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/assets/book_underscore.jpg -------------------------------------------------------------------------------- /docs/download/angular2.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/angular2.epub -------------------------------------------------------------------------------- /docs/download/apolloreact.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/apolloreact.epub -------------------------------------------------------------------------------- /docs/download/elm.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/elm.epub -------------------------------------------------------------------------------- /docs/download/express.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/express.epub -------------------------------------------------------------------------------- /docs/download/lodash.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/lodash.epub -------------------------------------------------------------------------------- /docs/download/mobx.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/mobx.epub -------------------------------------------------------------------------------- /docs/download/react.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/react.epub -------------------------------------------------------------------------------- /docs/download/sass.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/sass.epub -------------------------------------------------------------------------------- /docs/download/socketio.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/socketio.epub -------------------------------------------------------------------------------- /docs/download/underscore.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/underscore.epub -------------------------------------------------------------------------------- /docs/download/vue.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/download/vue.epub -------------------------------------------------------------------------------- /docs/ereader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/ereader.jpg -------------------------------------------------------------------------------- /docs/gallery-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/gallery-bg.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/lib/cutereset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/lib/cutereset.css -------------------------------------------------------------------------------- /docs/og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/og.jpg -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/docs/style.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/package.json -------------------------------------------------------------------------------- /src/getAboutPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/getAboutPage.js -------------------------------------------------------------------------------- /src/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/run.js -------------------------------------------------------------------------------- /src/strategies/angular2/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/angular2/clean.js -------------------------------------------------------------------------------- /src/strategies/angular2/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/angular2/cover.jpg -------------------------------------------------------------------------------- /src/strategies/angular2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/angular2/index.js -------------------------------------------------------------------------------- /src/strategies/angular2/scrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/angular2/scrapper.js -------------------------------------------------------------------------------- /src/strategies/apollo-react/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/apollo-react/cover.jpg -------------------------------------------------------------------------------- /src/strategies/apollo-react/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/apollo-react/index.js -------------------------------------------------------------------------------- /src/strategies/apollo-react/scrapperMd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/apollo-react/scrapperMd.js -------------------------------------------------------------------------------- /src/strategies/express/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/express/cover.jpg -------------------------------------------------------------------------------- /src/strategies/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/express/index.js -------------------------------------------------------------------------------- /src/strategies/express/scrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/express/scrapper.js -------------------------------------------------------------------------------- /src/strategies/lodash/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/lodash/clean.js -------------------------------------------------------------------------------- /src/strategies/lodash/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/lodash/cover.jpg -------------------------------------------------------------------------------- /src/strategies/lodash/epub.css: -------------------------------------------------------------------------------- 1 | .buttons-unit, iframe { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /src/strategies/lodash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/lodash/index.js -------------------------------------------------------------------------------- /src/strategies/lodash/scrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/lodash/scrapper.js -------------------------------------------------------------------------------- /src/strategies/lodash/scrapperMd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/lodash/scrapperMd.js -------------------------------------------------------------------------------- /src/strategies/react/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/react/clean.js -------------------------------------------------------------------------------- /src/strategies/react/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/react/cover.jpg -------------------------------------------------------------------------------- /src/strategies/react/epub.css: -------------------------------------------------------------------------------- 1 | .buttons-unit, iframe { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /src/strategies/react/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/react/index.js -------------------------------------------------------------------------------- /src/strategies/react/scrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/react/scrapper.js -------------------------------------------------------------------------------- /src/strategies/react/scrapperMd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/react/scrapperMd.js -------------------------------------------------------------------------------- /src/strategies/sass/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/sass/clean.js -------------------------------------------------------------------------------- /src/strategies/sass/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/sass/cover.jpg -------------------------------------------------------------------------------- /src/strategies/sass/epub.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/strategies/sass/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/sass/index.js -------------------------------------------------------------------------------- /src/strategies/sass/scrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/sass/scrapper.js -------------------------------------------------------------------------------- /src/strategies/sass/scrapperMd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/sass/scrapperMd.js -------------------------------------------------------------------------------- /src/strategies/underscore/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/underscore/cover.jpg -------------------------------------------------------------------------------- /src/strategies/underscore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/underscore/index.js -------------------------------------------------------------------------------- /src/strategies/underscore/scrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/strategies/underscore/scrapper.js -------------------------------------------------------------------------------- /src/tocObjToHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/tocObjToHtml.js -------------------------------------------------------------------------------- /src/tocToArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/docs2epub/HEAD/src/tocToArray.js --------------------------------------------------------------------------------