Hey
I found this post when searching for a a way to place an image next to text (in a two colomn way), and it helpt me achieve this by creating a partial like this:
{{ $cols := split .RawContent "||" }}
{{ range $cols }}
<div class="content-column">
{{ . | markdownify }}
</div>
{{ end }}
thanks @digitalcraftsman