Embedding Videos in Markdown #3224
Answered
by
rjzupkoii
John-Zou-PEK
asked this question in
Q&A
-
I've added two mp4 files which are stored using git_lfs and tried to embed them in my talks section. I was unable to view the video in preview, in the website or through the corresponding link. This is the syntax I used, help me please
|
Beta Was this translation helpful? Give feedback.
Answered by
rjzupkoii
Jul 31, 2025
Replies: 1 comment 3 replies
-
Embedding video in Markdown isn't supported, so you will need to use HTML instead. Modern browsers should support syntax like the following: <video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video> You can include HTML in the *.md files, and the Markdown around it will be processed as normal. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
John-Zou-PEK
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Embedding video in Markdown isn't supported, so you will need to use HTML instead. Modern browsers should support syntax like the following:
You can include HTML in the *.md files, and the Markdown around it will be processed as normal.