/** * Butterfly * label * {% label text color %} */ 'use strict' const addLabel = args => { const [text, className = 'default'] = args return `${text} ` } hexo.extend.tag.register('label', addLabel, { ends: false })