You’ll have to do this instead:
{{< callout >}}
This is my content with a footnote
{{< /callout > }}[^1]
You will also need to prevent the superscript from jumping to the next line. You could do either of these in your shortcode:
- Style the
<div>
to display inline.
- Use a
<span>
instead of a <div>
. For example: <span class="callout">{{- .Inner | markdownify -}}</span>
{{- /* This comment trims trailing whitespace. */ -}}
This question has come up before: