'use strict'; function postBtns(args, content) { return `
${content}
`; } 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/xaoxuu/cdn-assets/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 `${text}` } else { return `${text}` } } hexo.extend.tag.register('btns', postBtns, {ends: true}); hexo.extend.tag.register('cell', postCell);