Created
July 27, 2020 20:47
-
-
Save jonwolfe/6b114941dde5a7d06ab2bc54c5f1e7d5 to your computer and use it in GitHub Desktop.
video markup for videos in ghost posts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
without a caption: | |
<video controls poster=''> | |
<source type='video/mp4' src=''> | |
</video> | |
with a caption: | |
<figure> | |
<video controls poster=''> | |
<source type='video/mp4' src=''> | |
</video> | |
<figcaption>Caption here</figcaption> | |
</figure> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment