Embed videos in release notes

If you have hosted videos for particular features you can embed them using iframes 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

IdTitleCustom.VideoURL
100Feature with videohttps://www.youtube.com/embed/ayOqkfIYlbw
200Feature 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 ๐Ÿ˜”