Embed videos in release notes
If you have hosted videos for particular features you can embed them using iframe
s and custom fields.
Template
{{#workItems}}
## {{{ field 'Title' }}}
{{#if-field 'Custom.VideoURL'}}
**Watch the video**
<iframe width="560" height="315"
src="{{ field 'Custom.VideoURL' tooltip=false }}"
frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
{{else}}
Sorry - no video ๐
{{/if-field}}
{{/workItems}}
Work items
Id | Title | Custom.VideoURL |
---|---|---|
100 | Feature with video | https://www.youtube.com/embed/ayOqkfIYlbw |
200 | Feature without video |
Result
Feature with video
Watch the video
<iframe width="560" height="315" src="https://www.youtube.com/embed/ayOqkfIYlbw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen> </iframe>
Feature without video
Sorry - no video ๐