This commit is contained in:
xaoxuu 2022-10-25 22:49:08 +08:00
parent 05564d4bbc
commit 4146a6389a
1 changed files with 4 additions and 4 deletions

View File

@ -1,15 +1,15 @@
/** /**
* grid.js v1.0 | https://github.com/xaoxuu/hexo-theme-stellar/ * border.js v1.0 | https://github.com/xaoxuu/hexo-theme-stellar/
* 格式与官方标签插件一致使用空格分隔中括号内的是可选参数中括号不需要写出来 * 格式与官方标签插件一致使用空格分隔中括号内的是可选参数中括号不需要写出来
* *
* {% grid [color:color] [child:codeblock/tabs] title %} * {% border [color:color] [child:codeblock/tabs] title %}
* body * body
* {% endgrid %} * {% endborder %}
*/ */
'use strict'; 'use strict';
hexo.extend.tag.register('grid', function(args, content) { hexo.extend.tag.register('border', function(args, content) {
args = hexo.args.map(args, ['color', 'child'], ['title']); args = hexo.args.map(args, ['color', 'child'], ['title']);
const color = args.color; const color = args.color;
const title = args.title; const title = args.title;