zephraph / nunjucks-markdown

Markdown extension for Nunjucks. Use your own renderer!
MIT License
49 stars 12 forks source link

Prevent parsing nunjucks content from markdown file #26

Open keelii opened 6 years ago

keelii commented 6 years ago

Here is my files:

index.html

{% markdown 'README.md' %}

README.md

some markdown content
...
{% include  'anything' %}
...

nunjucks-markdown parse the include tag inside README.md file which is not expected.

I just wondering if there is another way to do that to me.