• Stars
    star
    393
  • Rank 109,518 (Top 3 %)
  • Language
    CoffeeScript
  • License
    BSD 2-Clause "Sim...
  • Created over 9 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

HyperDown.js

这是 js 版本 HyperDown (使用CoffeeScript实现)

使用方法

nodejs 中使用

安装

npm install hyperdown

使用

HyperDown = require('hyperdown');

var parser = new HyperDown,
    html = parser.makeHtml(markdownText);

浏览器中使用

直接引用Parser.js即可

<script src="yourpath/hyperdown/Parser.js"></script>
<script>
var parser = new HyperDown,
    html = parser.makeHtml(markdownText);
</script>

单元测试

npm test

更多请参阅:php 版 Hyperdown