etaoin 2022-12-15

Is it possible to activate the reader view from firefox and scrape just those contents? Or any other easy way to just simplify/sanitize the HTML content?

I've not played with this use case @adrien615. Perhaps others will chime in with their experiences.

Found a super easy solution:

(defn scrape-article [url]
  (e/go *driver* (str "about:reader?url=" url)))
Just prepend with about:reader?url= !

🎉 4

Nice! Thanks for sharing what you learned!