Columns shortcode that works with footnotes?

You’ll need to pass the content through safeHTML.

layouts/shortcodes/columns.html

<div class="book-columns flex flex-wrap">
{{ range split .Inner "<--->" }}
  <div class="flex-even markdown-inner">
    {{ . | safeHTML }}
  </div>
{{ end }}
</div>