@loftysoul/soul
Version:
The professional Content Management System, based ghost
39 lines (32 loc) • 1.17 kB
JavaScript
// # Content Helper
// Usage: `{{content}}`, `{{content words="20"}}`, `{{content characters="256"}}`
//
// Turns content html into a safestring so that the user doesn't have to
// escape it or tell handlebars to leave it alone with a triple-brace.
//
// Enables tag-safe truncation of content by characters or words.
const {SafeString} = require('./proxy');
const downsize = require('downsize');
module.exports = function content(options = {}) {
const hash = options.hash || {};
const truncateOptions = {};
let runTruncate = false;
for (const key of ['words', 'characters']) {
if (Object.prototype.hasOwnProperty.call(hash, key)) {
runTruncate = true;
truncateOptions[key] = parseInt(hash[key], 10);
}
}
if (this.html === null) {
this.html = '';
}
// tab缩进不生效,替换为4个空格
// eslint-disable-next-line no-control-regex
this.html = this.html.replace(new RegExp(' ','gm'),' ');
if (runTruncate) {
return new SafeString(
downsize(this.html, truncateOptions)
);
}
return new SafeString(this.html);
};