Hello.
I'm just starting to use Grav and one of the things I miss (or have not yet found a plug-in for) is how I can include a .md file from within e.g. default.md.
As an example, if I have a default.md like:
---
title: Demo page
---
This is an example of what I want.
{{ include "some_other.md" }}
And this some_other.md file, which is in the same folder as default.md, will be inserted and rendered at the include location.
So whenever Grav will load this (default.md) page, it needs to include the raw some_other.md file and renders this at that location along with the rest of the default.md file.
I need this to include some md files I create via some scripts to be inserted into a Grav page.
Please help. ;)