Can you add a local video(mov) from same folder file to a markDown file(md)
I have tried: [![Video](file:video.mov
Do you know?
You just drag your video file on your laptop or pc to the markdown file in Github. Done.
With the latest update all you have to do is open your markdown editor in GitHub and just drag your media into the editor and it should be added to your README.
You can now attach files, including images, to markdown files while you're editing them in the web. This works just like file attachments in issues and pull requests and supports the same file types. Just drag and drag, click and select, or paste.
Depending on your markdown processor, there may be a built-in syntax. For example, in pandoc the image syntax with a video file extension (.mov
, .mp4
) can be used:
![](my_video.mov)
For other processors, you can always write raw-HTML in your markdown:
<video width="320" height="240" controls>
<source src="video.mov" type="video/mp4">
</video>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With