A question for the #11ty and #nunjuck wizards...my markdown files get fed into the template with {{ content | safe }}.
What if, say, I want to split my content up and scatter it across the template...
{{ firstBitOfContent | safe }}
<div>
...misc other html...maybe an image...
</div>
{{ secondBitOfContent | safe }}
Is there some magic shortcode/filter thing...that means I could achieve this whilst having it still in one markdown file....
## My subheading
and this is my first bit of content
{% magic shortcode/filter thing %}
and this is the second part of my content
Does this make any sense?
I see some of the 11ty starters (like this one https://github.com/StaticMania/roxo-eleventy/blob/master/src/index.md?plain=1) rely heavily on frontmatter for complex templating... I'd rather not go down that path
