In Nuxt Content, we can create and declare Markdown partials by prefixing the file name with an underscore, as described here: https://content.nuxtjs.org/guide/writing/content-directory#partials
However, the documentation contains no information on how to actually use these partials, besides mentioning that they can be queried for through the JS API.
What I would expect is the ability to easily render these partials inline from other Markdown content, such that the partials can be used for frequently reused fragments of content, to avoid duplicating said content.
How can I render a Markdown partial from inside another Markdown file?