Every <pre> tag (usually denoting code blocks) will now have a Save as Gist button which appears when you hover over the block. Try it below: function throttle( fn, time ) { var t = 0; return function() { var args = arguments, ctx = this; clearTimeout(t); t = setTimeout( function() { fn.apply( ctx, args ); }, time ); }; }