UNPKG

theme-lx

Version:

A simle & clear & elegant hexo theme

17 lines (12 loc) 434 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});