tag ช่วยให้ผู้ใช้เสียบ snippet เข้าไปในโพสต์ของตนอย่างง่ายดายและรวดเร็ว
Synopsis
hexo.extend.tag.register(name, function(args, content){ |
argument ทั้งหมดสองตัวจะส่งเข้า function แท็ก: args
และ content
args
เป็น argument ท่ีส่งเข้าปลั๊กอินแท็กและ content
เป็นเนื้อหาท่ีอยู่ในปลั๊กอินแท็ก จากคำแนะนำของ asynchronous rendering ใน hexo 3 รู้ได้ว่า hexo ใช้ Nunjucks เพื่อ rendering ซึ่งแตกต่างจาก rendering ใน Swig
Options
ends
ใช้แท็ก end ตัวเลือก default คือ false
async
เปิดโหมด async ตัวเลือก default คือ false
Examples
Without End Tags
เสียบวิดีโอ youtube ลง
hexo.extend.tag.register('youtube', function(args){ |
With End Tags
เสียบ pull quote ลง
hexo.extend.tag.register('pullquote', function(args, content){ |
Async Rendering
เสียบไฟล์ลง
var fs = require('hexo-fs'); |