md0 是一个丑陋的 markdown 转 html 的工具。
用法
npm install md0 var md0 = require('md0') var markdown = '# title1\n## title2' var option = { codeIndex: true, codeHeight: 0, titleAnchor: true, catalog: false } var html = md0(markdown, option) console.log(html)
<script src="/path/to/md0.js"></script> <link rel="stylesheet" href="/path/to/md0.css"/> <script> var markdown = '# title1\n## title2' var option = { codeIndex: true, codeHeight: 0, titleAnchor: true, catalog: false } var html = md0(markdown, option) console.log(html) </script>
md0 添加有实用的引用功能,用于块或结构化内容的引用
引用
定义引用块theCode:
theCode
&&&theCode 引用的内容部分 这里面可以写表格 |col1|col2|col3| |---|---|---| |-|-|-| &&&
theCode 是引用的名称,引用名称仅支持 [a-zA-Z_\-0-9]
[a-zA-Z_\-0-9]
引用 theCode 块:
|col1|col2|col3| |---|---|---| |&theCode&|-|-|
使用 &theCode& 来将前面定义的引用块引用到表格内。
&theCode&
node parser.js README.md readme.html