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.

21 lines
555 B

4 years ago
  1. hexo.extend.tag.register('audio', function(args) {
  2. const file = args[0];
  3. const title = args[1];
  4. const date = args[2];
  5. const desc = args[3];
  6. return `
  7. <div>
  8. <h3>${title}</h3>
  9. <span style="display:block;margin:0.66em 0;">${date}</span>
  10. <figure>
  11. <figcaption>${desc}</figcaption>
  12. <audio style="display:block;width:100%;border-radius:6px;"
  13. preload="metadata"
  14. controls
  15. src="${file}"
  16. >
  17. Your browser does not support the <code>audio</code> element.
  18. </audio>
  19. </figure>
  20. </div>`;
  21. }, {ends: false});