├── README.md └── readability.js /README.md: -------------------------------------------------------------------------------- 1 | # My scripts for shot-scraper 2 | 3 | See [this post](https://simonwillison.net/2025/Mar/25/shot-scraper/) for details. 4 | -------------------------------------------------------------------------------- /readability.js: -------------------------------------------------------------------------------- 1 | async () => { 2 | const readability = await import('https://cdn.jsdelivr.net/npm/@mozilla/readability@0.6.0/+esm'); 3 | return (new readability.Readability(document)).parse(); 4 | } 5 | --------------------------------------------------------------------------------