In the Assemble documentation there are instructions for loading up a Markdown file from a variable and rendering it with handlebars like this:
---
content: ../path/to/content.md
---
{{md content }}
Is there any way to do this while using Jade instead of Handlebars?
I know you can use filters with includes in Jade like this: include:md path/to/markdown.md
but I'm trying to load up a markdown file defined by a variable, as in the above example, and Jade doesn't support variables in includes.
Many thanks.