UNPKG

njsbtguide

Version:

Playground

14 lines (9 loc) 337 B
/** * video.js | https://theme-next.org/docs/tag-plugins/video */ /* global hexo */ 'use strict'; function postVideo(args) { return `<video src="${args}" preload="metadata" controls playsinline poster="">Sorry, your browser does not support the video tag.</video>`; } hexo.extend.tag.register('video', postVideo, {ends: false});