UNPKG

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