UNPKG

hexo-tag-plugins

Version:

A number of tag plugins for theme-butterfly

36 lines (32 loc) 968 B
'use strict'; function postBtns(args, content) { return `<div class="btns ${args.join(' ')}"> ${content} </div>`; } function postCell(args, content) { args = args.join(' ').split(',') let text = args[0] || '' let url = args[1] || '' text = text.trim() url = url.trim() if (url.length > 0) { url = "href='" + url + "'" } let icon = '' let img = 'https://cdn.jsdelivr.net/gh/volantis-x/cdn-volantis@3/img/placeholder/d570170f4f12e1ee829ca0e85a7dffeb77343a.svg' if (args.length > 2) { if (args[2].indexOf(' fa-') > -1) { icon = args[2].trim() } else { img = args[2].trim() } } if (icon.length > 0) { return `<a class="button" ${url} title='${text}'><i class='${icon}'></i>${text}</a>` } else { return `<a class="button" ${url} title='${text}'><img src='${img}'>${text}</a>` } } hexo.extend.tag.register('btns', postBtns, {ends: true}); hexo.extend.tag.register('cell', postCell);