hexo-theme-next
Version:
Elegant and powerful theme for Hexo.
14 lines (9 loc) • 326 B
JavaScript
/**
* label.js | https://theme-next.js.org/docs/tag-plugins/label
*/
;
module.exports = ctx => function(args) {
const [classes = 'default', text = ''] = args.join(' ').split('@');
if (!text) ctx.log.warn('Label text must be defined!');
return `<mark class="label ${classes.trim()}">${text}</mark>`;
};