out = {
let blob = new Blob([myInput], {type: 'text/plain'});
const downloadLink = `Click this link to <a href="${URL.createObjectURL(blob)}" download="${fileName}">download</a> the file.`
const out = html`<div class="download">${downloadLink}</div>`;
yield out;
}