RSSHub/lib/v2/transcriptforest/templates/description.art

23 lines
516 B
Plaintext

{{ if audios }}
{{ each audios audio }}
{{ if audio?.src }}
<audio controls>
<source
src="{{ audio.src }}"
type="{{ audio.type }}">
<object data="{{ audio.src }}">
<embed src="{{ audio.src }}">
</object>
</audio>
{{ /if }}
{{ /each }}
{{ /if }}
{{ if texts }}
{{ each texts t }}
{{ if t.startTime && t.endTime }}
<small>{{ t.startTime }} - {{ t.endTime }}</small>
{{ /if }}
<p>{{ t.text }}</p>
{{ /each }}
{{ /if }}