Last active
February 21, 2016 18:36
-
-
Save davehughes/037352bb0f3b8d8e3793 to your computer and use it in GitHub Desktop.
"Easy Reading Format" bookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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