UNPKG

hexo

Version:

A fast, simple & powerful blog framework, powered by Node.js.

10 lines (7 loc) 238 B
var util = require('../../util'), titlecase = util.titlecase; module.exports = function(data, callback){ if (!hexo.config.titlecase || !data.title) return callback(); data.title = titlecase(data.title); callback(null, data); };