1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Video with link syntax:
.
[test link](https://example.com/file.webm)
.
<p><video controls preload="metadata">
<source type="video/webm" src="https://example.com/file.webm"></source>
Your browser does not support playing HTML5 video. You can <a href="https://example.com/file.webm" download>download a copy of the video file</a> instead.
Here is a description of the content: test link
</video></p>
.
Video with link syntax (no text label):
.
[](https://example.com/file.webm)
.
<p><video controls preload="metadata">
<source type="video/webm" src="https://example.com/file.webm"></source>
Your browser does not support playing HTML5 video. You can <a href="https://example.com/file.webm" download>download a copy of the video file</a> instead.
</video></p>
.
Check usual link is not broken:
.
[test link](https://example.com/file.php)
.
<p><a href="https://example.com/file.php">test link</a></p>
.
|