UNPKG

329 BJavaScriptView Raw
1/**
2 * CLI config example
3 * markdown.config.js as default name
4 */
5module.exports = {
6 transforms: {
7 /* Match AUTO-GENERATED-CONTENT (LOLZ) */
8 LOLZ(content, options) {
9 return `This section was generated by the cli config markdown.config.js file`
10 }
11 },
12 callback: function () {
13 console.log('done')
14 }
15}