You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
272 B

4 years ago
'use strict';
function postVideo(args) {
let src = args[0].trim()
return `<video controls preload width='100%' height='100%'><source src='${src}' type='video/mp4'>Your browser does not support the video tag.</video>`;
}
hexo.extend.tag.register('video', postVideo);