Event type

Length

Key points to add to your speech

'; 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 = `${eventType === 'Any' ? 'General' : eventType} Speech (AI Speech Writer).doc`; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); } }); // Set initial placeholder for key points keyPointsInput.placeholder = exampleKeyPoints['Any'];