1 2 3 4 5 6 7 8 9 10 11 | 1× 1× 1× | var paragraph = require('./paragraph')
module.exports = function (string, center, styles) {
return paragraph({
alignment: center ? 'center' : 'left',
depth: 1,
title: true,
content: [ { monospaced: string } ]
}, null, null, null, null, styles)
}
|