Embed videos in release notes

If you have hosted videos for particular features you can embed them using iframes and custom fields.

Open in playground

Template

Given the following 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

Given these work items were added

Id Title Custom.VideoURL
100 Feature with video https://www.youtube.com/embed/ayOqkfIYlbw
200 Feature without video

Result

Bravo Notes generates the document like this:

Feature with video

Watch the video

Feature without video

Sorry - no video 😔

Open in playground
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us