[413088]: / docs / site_libs / navigation-1.1 / sourceembed.js

Download this file

13 lines (11 with data), 357 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
window.initializeSourceEmbed = function(filename) {
$("#rmd-download-source").click(function() {
var src = $("#rmd-source-code").html();
var a = document.createElement('a');
a.href = "data:text/x-r-markdown;base64," + src;
a.download = filename;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
});
};