File: link-syntax-http-disabled.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 (20 lines) | stat: -rw-r--r-- 402 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
Video with link syntax:
.
[test link](http://example.com/file.webm)
.
<p><a href="http://example.com/file.webm">test link</a></p>
.

Video with link syntax (no text label):
.
[](http://example.com/file.webm)
.
<p><a href="http://example.com/file.webm"></a></p>
.

Check usual link is not broken:
.
[test link](http://example.com/file.php)
.
<p><a href="http://example.com/file.php">test link</a></p>
.