UNPKG

hexo-theme-volantis

Version:

Elegant and powerful theme for Hexo.

24 lines (19 loc) 491 B
/** * 上次修改更新:5.0 | https://github.com/volantis-x/hexo-theme-volantis * */ /** * table.js | https://github.com/volantis-x/hexo-theme-volantis */ 'use strict'; // {% table title %} // table markdown // {% endtable %} function postTable(args, content) { let ret = ''; ret += '<div class="table">'; ret += hexo.render.renderSync({ text: content, engine: 'markdown' }); ret += '</div>'; return ret; } hexo.extend.tag.register('table', postTable, { ends: true });