UNPKG

njsmultiredis

Version:

Toy Playground

17 lines (12 loc) 418 B
/** * center-quote.js | https://theme-next.org/docs/tag-plugins/ */ /* global hexo */ 'use strict'; function centerQuote(args, content) { return '<blockquote class="blockquote-center">' + hexo.render.renderSync({text: content, engine: 'markdown'}) + '</blockquote>'; } hexo.extend.tag.register('centerquote', centerQuote, {ends: true}); hexo.extend.tag.register('cq', centerQuote, {ends: true});