function download() {
var a = document.body.appendChild(
document.createElement("a")
);
var textToWrite = document.getElementById("show-data").innerText;
a.download = "export.txt";
textToWrite = textToWrite.replace(/
/g, "%0D%0A");
a.href = "data:text/plain," + textToWrite;
a.click();
}