官方项目主页:http://strapdownjs.com
我的项目:基于html和strapdown的MarkDown模板,直接在html文件中用MarkDown语法书写内容,提供多种配色方案的皮肤。
模板下载:http://download.csdn.net/detail/u012107143/9769683
简单模板:
需要在线加载js脚本。
优点:体积小
缺点:依赖于网络,没有联网,或网速不好时,不能正常预览
<!DOCTYPE html><html><title>
标题:请在此处输入标题
</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><meta http-equiv="cache-control" content="max-stale"><xmp style="display:none;">
正文:请在此处用MarkDown语法输入正文
</xmp><script src="http://strapdownjs.com/v/0.2/strapdown.js"></script></html>
完全模板:
不需要在线加载js脚本,本身包含了js代码。
优点:不依赖于网络
缺点:体积大
<!DOCTYPE html><html><title>
标题:请在此处输入标题
</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><meta http-equiv="cache-control" content="max-stale"><xmp style="display:none;">
正文:请在此处用MarkDown语法输入正文
</xmp><style type="text/css">/*! Bootstrap Responsive v2.1.1 */.clearfix:after,.clearfix:before{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0...省略部分代码...</script></html>