I am working with a gatsbyjs app, where I have some .yml files that have following format:
My goal is to render value of markdownContent field as HTML. For that purpose, I first read contents of these .yml files using 'gatsby-transformer-yaml' plugin and then I use remark and remark-html to convert the value of markdownContent field to html.
The html renders just fine, however I couldn't get the image (linked as part of markdownContent field) to render (all image requests return in 404)
Is it even possible this way? If not, how can I get my markdown images to render in HTML when the markdown is not coming from gatsby-markdown-remark?

You can use
gatsby-transformer-yaml-fullwhich will create a queryable GraphQL node from a YAML input.Once installed it (by
npm install gatsby-transformer-yaml-fullor its yarn equivalent):This will allow the plugin to create GraphQL nodes, exposed as allCollectionYaml. For example:
Then in your page/template you just need to access the GraphQL data (stored inside
dataobject in the pageprops) and usedangerouslySetInnerHTMLto render it:Alternatively, you can use a safer option like markdown-to-jsx.