UNPKG

hexo-theme-butterfly

Version:

A Simple and Card UI Design theme for Hexo

15 lines (11 loc) 283 B
/** * Butterfly * label * {% label text color %} */ 'use strict' const addLabel = args => { const [text, className = 'default'] = args return `<mark class="hl-label ${className}">${text}</mark>` } hexo.extend.tag.register('label', addLabel, { ends: false })