Hugo inline HTML insertion
Hugo shortcodes are a powerful, easy way to template code used in blogs and websites. Ana Ulin describes a one-line Hugo shortcode to inline HTML in Hugo:
Under the top-level Hugo website Git directory, add file “layouts/shortcodes/rawhtml.html” containing:
{{.Inner}}
Then in the Markdown file for the particular blog post, do like (removing the space between the left brace and the left caret):
{{ < rawhtml >}}
<p>arbitrary HTML here</p>
{{ < /rawhtml >}}