Enter your topic

Key points to add to your content

Content type

Tone

Number of sections

'; const sourceHTML = header + htmlContent + footer; blob = new Blob(['\ufeff', sourceHTML], { type: 'application/msword' }); url = URL.createObjectURL(blob); a = document.createElement('a'); a.href = url; a.download = `${topic} (ChatLabs AI Outline Generator).doc`; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); } });