Last active
September 21, 2017 02:25
-
-
Save voltrevo/387b1913395d97476c0603802341a764 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const rows = Array.prototype.slice.apply( | |
document.querySelectorAll('.js-file-line') | |
); | |
const code = rows | |
.map(el => | |
el.innerHTML | |
.replace(/<[^>]*>/g, '') | |
.replace(/</g, '<') | |
.replace(/>/g, '>') | |
.replace(/&/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