Advertisement
Guest User

Bookmarklet to fix Film Critic Hulk

a guest
Sep 11th, 2014
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Mostly fixes the prose for Badass Digest's "Film Critic Hulk" (http://badassdigest.com/author/67).
  2. // This bookmarklet makes his atypically long postings significantly more comfortable to read. It's not perfect, but it will do.
  3. javascript:Array.prototype.forEach.call(document.querySelectorAll("article>.entry>p"), function(elem){elem.innerHTML = elem.innerHTML.toLowerCase().replace(/(^|\n|[!.?] )\w/g, function(a,b){return a.toUpperCase();} );});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement