I'm using nuxt / content in my app and it's working fine. In another part of the app, I'd like to fetch some markdown from a database and display it.
let mytext = "Some *markdown* fetched from a db here."
<nuxt-content :document="mytext" />
This does not work because I'm missing a parsing step; when you do $content("a_page_title_here").fetch() it parses the fetched text and presents it to the component as structured json.
How do I use $content to parse text, so it can be passed to the component for display?
I'll bet there is a way to do it, but the documentation does not include a reference section that describes everything you can do with $content.
If there is an easy way to use the underlying Remark component, I can do that.