Use markdown-it-html5-embed plugin so user can embed audio and video using the markdown link syntax []() in the HTML5 way.
19 lines
389 B
Handlebars
19 lines
389 B
Handlebars
<div class="media-embed">
|
|
{{#if needsCover}}
|
|
<div class="thumb">
|
|
{{/if}}
|
|
|
|
<{{mediaType}} {{{attributes}}}>
|
|
<source type="{{mimetype}}" src="{{sourceURL}}" />
|
|
{{title}}
|
|
</{{mediaType}}>
|
|
|
|
{{#if needsCover}}
|
|
<div class="video-overlay">
|
|
<div class="video-info">
|
|
<div class="title">{{title}}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|