trainingproject
Version:
A module to teach you how to module.
22 lines (20 loc) • 378 B
JavaScript
const msee = require('msee')
const mseeOptions = {
paragraphStart: '',
paragraphEnd: '\n\n',
hrChar: '\u2500',
listItemPad: {
right: ' ',
first: ' » ',
regular: ' '
},
defaultCodePad: ' ',
paragraphPad: {
left: ' ',
right: ' '
},
maxWidth: 78
}
module.exports = function (content) {
return msee.parse(content, mseeOptions)
}