├── .gitignore ├── README.md ├── api ├── _common.js ├── readability.js └── webhook.js ├── package.json ├── public ├── article.html ├── favicon.png ├── global.css ├── index.html └── robots.txt ├── rollup.config.js ├── rules.iv ├── scripts └── setupTypeScript.js ├── src ├── App.svelte └── main.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/README.md -------------------------------------------------------------------------------- /api/_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/api/_common.js -------------------------------------------------------------------------------- /api/readability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/api/readability.js -------------------------------------------------------------------------------- /api/webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/api/webhook.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/package.json -------------------------------------------------------------------------------- /public/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/public/article.html -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/public/global.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: /api/ 3 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/rollup.config.js -------------------------------------------------------------------------------- /rules.iv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/rules.iv -------------------------------------------------------------------------------- /scripts/setupTypeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/scripts/setupTypeScript.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/src/main.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gowee/readability-bot/HEAD/yarn.lock --------------------------------------------------------------------------------