Skip to content

Instantly share code, notes, and snippets.

@voltrevo
Last active September 21, 2017 02:25
Show Gist options
  • Save voltrevo/387b1913395d97476c0603802341a764 to your computer and use it in GitHub Desktop.
Save voltrevo/387b1913395d97476c0603802341a764 to your computer and use it in GitHub Desktop.
'use strict';
const rows = Array.prototype.slice.apply(
document.querySelectorAll('.js-file-line')
);
const code = rows
.map(el =>
el.innerHTML
.replace(/<[^>]*>/g, '')
.replace(/&lt;/g, '<')
.replace(/&gt;/g, '>')
.replace(/&amp;/g, '&')
.replace(/%0A/g, '\n')
)
.join('\n')
;
const lnk = document.createElement('a');
lnk.href = `data:text/html;base64,${btoa(code)}`;
lnk.textContent = document.title;
lnk.setAttribute('class', 'btn btn-sm');
document.querySelector('.file-actions').appendChild(lnk);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment