njsbtguide
Version:
Playground
14 lines (9 loc) • 337 B
JavaScript
/**
* video.js | https://theme-next.org/docs/tag-plugins/video
*/
/* global hexo */
;
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});