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>
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>
.

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>
Your browser does not support playing HTML5 audio. You can <a href="https://example.com/file.ogg" download>download a copy of the audio file</a> instead.
</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>
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: some fancy title
</video></p>
.
