--- 2.title: 玩转markdown,你需要用到这几个工具 3.date: 2016-08-14 16:44:54 4.image: /img/pencils-762555_640.jpg 5.--- 6. 7.## 前言 8. 9.随着wordpress和静态网站的流行,markdown被用的越来越多。...
$ marked -o hello.html hello world ^D $ cat hello.html <p>hello world</p>
var marked = require('marked');
console.log(marked('I am using __markdown__.'));
// Outputs: <p>I am using <strong>markdown</strong>.</p>
marked.setOptions({
highlight: function (code, lang) {
var res;
if (lang) {
res = hljs.highlight(lang, code, true).value;
} else {
res = hljs.highlightAuto(code).value;
}
return res;
}
});
var toMarkdown = require('to-markdown');
toMarkdown('<h1>Hello world!</h1>');
toMarkdown('<del>Hello world!</del>', { gfm: true });
--- title: Just hack'n description: Nothing to see here --- This is some text about some stuff that happened sometime ago
var fs = require('fs')
, fm = require('front-matter')
fs.readFile('./example.md', 'utf8', function(err, data){
if (err) throw err
var content = fm(data)
console.log(content)
})
{
attributes: {
title: 'Just hack\'n',
description: 'Nothing to see here'
},
body: '\nThis is some text about some stuff that happened sometime ago',
frontmatter: 'title: Just hack\'n\ndescription: Nothing to see here'
}
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有