1.0.1 • Published 6 years ago

mdconf-stringify v1.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

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

links