📝 Markdown编辑器

在线编辑,实时预览,支持导出HTML和一键复制,无需注册,完全免费

Markdown 输入 0 字
实时预览 0 词
\n'; navigator.clipboard.writeText(html).then(() => showToast('HTML已复制到剪贴板')).catch(() => showToast('复制失败,请手动复制')); } function downloadHTML() { const html = '\n\nDocument\n\n' + preview.innerHTML + '\n\n'; const blob = new Blob([html], {type: 'text/html'}); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = 'document.html'; a.click(); URL.revokeObjectURL(url); showToast('HTML文件已下载'); }