Hi,
I'm writing a Rmd document for a Distill website.
To include a video in the web page using the Video.js player, I need to have the following in the resultant HTML file:
In the Head:
<link href="https://vjs.zencdn.net/7.10.2/video-js.css" rel="stylesheet" />
In the Body:
<script src="https://vjs.zencdn.net/7.10.2/video.min.js"></script>
My question: How do I "programmatically" get these statements there ? I certainly don't want to try editing each HTML files manually.
Thanks!
Howard