File: image-syntax-custom-messages.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 (37 lines) | stat: -rw-r--r-- 1,061 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
28
29
30
31
32
33
34
35
36
37
Video with image syntax:
.
![](https://example.com/file.webm)
.
<p><video width="320" height="240" class="audioplayer" controls>
<source type="video/webm" src="https://example.com/file.webm"></source>
You cannot play this but you can download it: https://example.com/file.webm
</video></p>
.

Audio with image syntax:
.
![](https://example.com/file.ogg)
.
<p><audio width="320" controls class="audioplayer">
<source type="audio/ogg" src="https://example.com/file.ogg"></source>
You cannot play this either but you can download it: https://example.com/file.ogg
</audio></p>
.

Check usual image is not broken:
.
![](https://example.com/file.png)
.
<p><img src="https://example.com/file.png" alt=""></p>
.

Video with image syntax and title:
.
![some fancy title](https://example.com/file.webm)
.
<p><video width="320" height="240" class="audioplayer" controls>
<source type="video/webm" src="https://example.com/file.webm"></source>
You cannot play this but you can download it: https://example.com/file.webm
It may contain this: some fancy title
</video></p>
.