Waldir Pimenta
Waldir Pimenta
More relevant stuff: * Mozilla's [fathom](https://github.com/mozilla/fathom) ([blog post](https://hacks.mozilla.org/2017/04/fathom-a-framework-for-understanding-web-pages/)) * Chromium's [DOM Distiller](https://github.com/chromium/dom-distiller) ([announcement on G+](https://plus.google.com/u/0/+FrancoisBeaufort/posts/KEcP88z2tfh)) * the [Just Read](https://github.com/ZachSaucier/Just-Read) Chrome extension
As a useful reference, https://github.com/flattr/flattr-extension/issues/27 lists the reading modes implemented by Firefox, Chrome, Edge and Safari.
Also related: the notion of classless CSS stylesheets: - [HTML5/CSS3 classless framework - Stack Overflow](https://stackoverflow.com/questions/11107842/html5-css3-classless-framework) - Lists several of the ones listed below. - [dbohdan/**classless-css**](https://github.com/dbohdan/classless-css): List of classless and classlight...
See also: - Mozilla's [readability.js](https://github.com/mozilla/readability) (unrelated to readability.com?), which has been [ported to Go](https://github.com/go-shiori/go-readability) - DOM Distiller (mentioned [above](https://github.com/waldyrious/downstyler/issues/29#issuecomment-328793255)) also has been [ported to Go](https://github.com/markusmobius/go-domdistiller). Here are [some notes](https://github.com/markusmobius/go-domdistiller#comparison-with-go-readability) comparing...
See also: [A look at CSS Resets in 2018](https://bitsofco.de/a-look-at-css-resets-in-2018/), which has a nice overview, including links to the most popular browsers' default stylesheets.
See also: https://github.com/jensimmons/cssremedy
[Attribute selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors) to the rescue? ```css img[align="right"] { margin-left: 1em; } img[align="left"] { margin-right: 1em; } ```
(WIP) List of pages where this can be tested: - http://www.jbox.dk/sanos/editor.htm
Considering that ``'s `align` attribute have been deprecated for a while, and CSS-based floating recommended instead, it would be better if we didn't strip the style from images in the...
Interactive demo pages that allow comparing various minimal/reset styles: - [Drop-in Minimal CSS](https://dohliam.github.io/dropin-minimal-css/) (source: https://github.com/dohliam/dropin-minimal-css) - [CSSresetr](https://perishablepress.com/cssresetr) (no source repository) - [HTML5 Kitchen-sink](https://codepen.io/dbox/pen/gMbeYw?editors=1100) (source: https://github.com/dbox/html5-kitchen-sink) Test pages containing multiple HTML...