Text to Word Converter

Convert your text content into Microsoft Word documents with advanced formatting options.

Formatting Options

`;// Create blob and download const blob = new Blob([htmlContent], { type: 'application/msword' }); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = `${title}.doc`; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); showToast('Document downloaded successfully'); }// Clear functionality document.getElementById('clear-btn').addEventListener('click', () => { document.getElementById('document-title').value = ''; document.getElementById('editor-content').value = ''; showToast('Content cleared'); });// Convert button document.getElementById('convert-btn').addEventListener('click', downloadAsWord);