驱动中国 工具箱工具箱

首页 / Markdown 预览

Markdown 在线预览 / 转 HTML

左边写、右边实时渲染。导出前已做 XSS 安全过滤。

'; var blob=new Blob([doc],{type:'text/html;charset=utf-8'}); var a=document.createElement('a'); a.href=URL.createObjectURL(blob); a.download='document.html'; a.click(); setTimeout(function(){ URL.revokeObjectURL(a.href) },5000); }); $('dlMd').addEventListener('click',function(){ var blob=new Blob([$('src').value],{type:'text/markdown;charset=utf-8'}); var a=document.createElement('a'); a.href=URL.createObjectURL(blob); a.download='document.md'; a.click(); setTimeout(function(){ URL.revokeObjectURL(a.href) },5000); }); render(); })();