Skip to content

Instantly share code, notes, and snippets.

@davehughes
Last active February 21, 2016 18:36
Show Gist options
  • Save davehughes/037352bb0f3b8d8e3793 to your computer and use it in GitHub Desktop.
Save davehughes/037352bb0f3b8d8e3793 to your computer and use it in GitHub Desktop.
"Easy Reading Format" bookmarklet
Adjusts formatting of full-width pages to make them easier to read. As an example, try it on https://isocpp.org/files/papers/p0225r0.html.
javascript:(function() { var elt = document.body; elt.style.width = "40%"; elt.style.margin = "3em auto"; })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment