标签

标签允许用户快速轻松地将代码片段插入到他们的文章中。

概述

hexo.extend.tag.register(
name,
function (args, content) {
// ...
},
options,
);

两个参数将传递到标签函数:argscontentargs 包含传递到标签插件的参数,content 是标签插件的包裹内容。

自从 Hexo 3 引入异步渲染以来,我们使用 Nunjucks 进行渲染。其行为可能与 Swig 有些不同。

注销标签

使用 unregister() 用自定义函数替换现有的 标签插件

hexo.extend.tag.unregister(name);

示例

const tagFn = (args, content) => {
content = "something";
return content;
};

// https://hexo.node.org.cn/docs/tag-plugins#YouTube
hexo.extend.tag.unregister("youtube");

hexo.extend.tag.register("youtube", tagFn);

选项

ends

使用结束标签。此选项默认情况下为 false

async

启用异步模式。此选项默认情况下为 false

示例

无结束标签

插入 Youtube 视频。

hexo.extend.tag.register("youtube", function (args) {
var id = args[0];
return (
'<div class="video-container"><iframe width="560" height="315" src="http://www.youtube.com/embed/' +
id +
'" frameborder="0" allowfullscreen></iframe></div>'
);
});

使用结束标签

插入引文。

hexo.extend.tag.register(
"pullquote",
function (args, content) {
var className = args.join(" ");
return (
'<blockquote class="pullquote' +
className +
'">' +
content +
"</blockquote>"
);
},
{ ends: true },
);

异步渲染

插入文件。

var fs = require("hexo-fs");
var pathFn = require("path");

hexo.extend.tag.register(
"include_code",
function (args) {
var filename = args[0];
var path = pathFn.join(hexo.source_dir, filename);

return fs.readFile(path).then(function (content) {
return "<pre><code>" + content + "</code></pre>";
});
},
{ async: true },
);

前置 matter 和用户配置

以下任何选项都是有效的

hexo.extend.tag.register('foo', function (args) {
const [firstArg] = args;

// User config
const { config } = hexo;
const editor = config.author + firstArg;

// Theme config
const { config: themeCfg } = hexo.theme;
if (themeCfg.fancybox) // do something...

// Front-matter
const { title } = this; // article's (post/page) title

// Article's content
const { _content } = this; // original content
const { content } = this; // HTML-rendered content

return 'foo';
});
index.js
hexo.extend.tag.register("foo", require("./lib/foo")(hexo));
lib/foo.js
module.exports = hexo => {
return function fooFn(args) {
const [firstArg] = args;

const { config } = hexo;
const editor = config.author + firstArg;

const { config: themeCfg } = hexo.theme;
if (themeCfg.fancybox) // do something...

const { title, _content, content } = this;

return 'foo';
};
};