Simple HTML renderer (SHR)
A rudimentary HTML rendered built into Emacs. Used, for example, by the Emacs Web Wowser or Notmuch.
Proportional fonts and custom colors make these hard to read. For instance, the mails from Humble Bundle are hard to read. Thus, we disable custom fonts and colors.
(setopt shr-use-fonts nil
shr-use-colors nil)
Limit the width to make the rendered content readable.
(The value should match the fill-column-indicator.)
(setopt shr-width 72)