It appears I have an issue passing a URL from markdown via a shortcode. File snippets as follows.
home.md:
{{< video >}} https://player.vimeo.com/video/146022717 {{< /video >}}
video.html:
<div class="resp-container"><iframe class="resp-iframe" src="{{ .Inner | markdownify }}" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></div>
as rendered (index.html):
<iframe class="resp-iframe" src="#ZgotmplZ" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" frameborder="0"></iframe>
Any help appreciated!