📝➡️🌐

    \n\n${htmlResult}\n\n`; const blob = new Blob([full], { type: 'text/html' }); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = 'converted.html'; a.click(); URL.revokeObjectURL(a.href); } function doClear() { htmlResult = ''; renderOutput(); $('#status').innerHTML = ''; $('#dropLabel').textContent = t('chooseFile'); $('#dropInfo').textContent = t('info'); } $('#toolbar').innerHTML = ` `; setMode('code'); GZ.renderToolPage({ category: 'convert', titleKey: 'toolTitle', descKey: 'toolDesc', howToSteps: ['step1','step2','step3','step4'], related: [ {icon:'📄', href:'/convert/word-to-pdf.html', name:'Word to PDF'}, {icon:'📥', href:'/convert/pdf-to-word.html', name:'PDF to Word'}, {icon:'📋', href:'/convert/markdown-to-html.html', name:'Markdown to HTML'}, {icon:'🔧', href:'/dev/html-formatter.html', name:'HTML Formatter'}, ] });