mdconf-stringify
v1.0.1
Published
stringify data to markdown/mdconf style
Downloads
28
Maintainers
Readme
mdconf-stringify
stringify data to markdown/mdconf style
npm install mdconf-stringify
demo
Mdconf.stringify
var stringify = require("node-novel-info");
var moment = require("moment");
console.log(stringify({
novel: {
test: true,
},
options: {
textlayout: {
lf: true,
},
data: moment(),
}
}));
output
#novel
- test: true
#options
- data: 2018-02-04T02:48:24+08:00
##textlayout
- lf: true