標籤外掛幫助使用者在文章中快速插入內容。
概要
hexo.extend.tag.register(name, function(args, content){ }, options);
|
標籤函數會傳入兩個參數:args
和 content
,前者代表使用者在使用標籤外掛時傳入的參數,而後者則是標籤外掛所包覆的內容。
自 Hexo 3 開始,因為新增了非同步渲染功能,而改用 Nunjucks 作為渲染引擎,其行為可能會與過去使用的 Swig 有些許差異。
選項
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>'; });
|
有結尾標籤
插入 pull quote。
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});
|