Skip to content

Instantly share code, notes, and snippets.

View hyperframed's full-sized avatar

Hyperframed hyperframed

View GitHub Profile
@hyperframed
hyperframed / tumblrLinkedInlineImages.js
Last active September 3, 2015 12:04
Wrap Tumblr inline Images (in text post) with link to source file
$('.tmblr-full').find('img').each(function(){
var source = $(this).attr('src');
$(this).wrap('<a href="' + source + '"></a>');
});