static/media/js/print.js @ e6125486d110 joekarl/chip8soundmarkdown-proofread-1482644403889
chip8-sound.markdown proofread
| author | joekarl <karlkrch@gmail.com> |
|---|---|
| date | Sun, 25 Dec 2016 05:40:08 +0000 |
| parents | e7bc59b9ebda |
| children | (none) |
$(function() { $('#leaf-content p:has(a)').add('#leaf-content ol:has(a)').add('#leaf-content ul:has(a)').each(function() { var printing_links = $(this).find('a') .not("[href^='#']") .not(":has(img)") .clone(); $(this).after(printing_links); printing_links.wrap('<li></li>') .parent() .wrapAll('<ul class="print-links"></ul>'); printing_links.each(function() { var href = $(this).attr('href'); if (href.match("^/")) { href = 'http://stevelosh.com' + href; } $(this).after(': ' + href); }); }); });