Getting your space station ready...
'; var blob = new Blob([htmlContent], { type: 'text/html' }); var url = URL.createObjectURL(blob); var a = document.createElement('a'); a.href = url; a.download = 'MyLearningFellow-Chat-' + new Date().toISOString().slice(0,10) + '.html'; a.click(); URL.revokeObjectURL(url); } }; })();