Last active
August 29, 2015 14:07
-
-
Save joshje/f1a4cb69b068cbda4c31 to your computer and use it in GitHub Desktop.
Revisions
-
joshje revised this gist
Oct 15, 2014 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -5,15 +5,15 @@ text = function(el) { if (el.innerText) return el.innerText; return el.textContent; }; var wordCount = text(body).split(' ').length; for (var i = codeBlocks.length - 1; i >= 0; i--) { var code = text(codeBlocks[i]); if (code) { codeLines += code.split('\n').length; wordCount -= code.split(' ').length;; } } var total = wordCount + codeLines * 10; -
joshje revised this gist
Oct 15, 2014 . 2 changed files with 31 additions and 9 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,15 @@ (function() { var codeBlocks = document.getElementsByTagName('pre'), codeLines = 0, body = document.getElementsByTagName('body')[0], text = function(el) { if (el.innerText) return el.innerText; return el.textContent; }, wordCount = text(body).split(' ').length; for (var i = codeBlocks.length - 1; i >= 0; i--) { var code = text(codeBlocks[i]); if (code) { codeLines += code.split('\n').length; var words = code.split(' ').length; @@ -14,11 +18,24 @@ } var total = wordCount + codeLines * 10; var list = []; list.push(wordCount + ' words (not including code)'); list.push(codeLines + ' lines of code (counting for ' + codeLines * 10 + ' words)'); list.push(total + ' total'); var message = 'Article has:'; message += '<ul style="margin: 0;padding-left: 20px;"><li>'; message += list.join('</li><li>'); message += '</li></ul>'; var el = document.createElement('p'); el.style.color = '#000'; el.style.position = 'relative'; el.style['z-index'] = 1000000; el.style.border = '1px solid #999'; el.style.padding = '10px'; el.style.margin = '10px'; el.style.background = '#FFF'; el.style['border-radius'] = '2px'; el.innerHTML = message; body.insertBefore(el, body.firstChild); })(); 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ # How to install the bookmarklet 1. Go to [http://gistlet.com/?gist=f1a4cb69b068cbda4c31](http://gistlet.com/?gist=f1a4cb69b068cbda4c31) 2. Drag the bookmark to your URL bar 3. You're done! -
joshje created this gist
Oct 14, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ (function() { var codeBlocks = document.getElementsByTagName('pre'), codeLines = 0, wordCount = document.getElementsByTagName('body')[0].innerText.split(' ').length; for (var i = codeBlocks.length - 1; i >= 0; i--) { var codeBlock = codeBlocks[i].getElementsByTagName('code'); var code = codeBlock.length ? codeBlock[0].innerText : null; if (code) { codeLines += code.split('\n').length; var words = code.split(' ').length; wordCount -= words; } } var total = wordCount + codeLines * 10; var message = []; message.push('Article has:'); message.push(wordCount + ' words (not including code)'); message.push(codeLines + ' lines of code (counting for ' + codeLines * 10 + ' words)'); message.push(total + ' total'); window.alert(message.join("\n")); })();