File: link-syntax.txt

package info (click to toggle)
node-markdown-it-html5-embed 1.0.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 380 kB
  • sloc: sh: 12; makefile: 11
file content (27 lines) | stat: -rw-r--r-- 901 bytes parent folder | download | duplicates (3)
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>
.