Markdown Editor & Preview
Insert
Editor
Words: 0 Chars: 0 Lines: 0
Preview
`; downloadFile(htmlContent, 'document.html', 'text/html;charset=utf-8'); } // ── Toast ── function showToast(msg) { const toast = document.getElementById('toast'); const toastMsg = document.getElementById('toastMsg'); toastMsg.textContent = msg; toast.classList.add('show'); setTimeout(() => toast.classList.remove('show'), 2500); } // ── Initial render ── renderPreview();