njsmultiredis
Version:
Toy Playground
17 lines (12 loc) • 418 B
JavaScript
/**
* center-quote.js | https://theme-next.org/docs/tag-plugins/
*/
/* global hexo */
;
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});