I'm using your nice plugin together with the pymdownx.snippets plugin
I have
extra:
test: 1.0.0
plugins:
- search
- awesome-pages
- section-index
- tags
- markdownextradata: {}
and a test.md
# Test of extras
This is top: {{test}}
--8<-- "snippet.md"
End
and a snippet.md
Expected outcome
<h1>Test of extras</h1>
This is top: 1.0.0
In the snippet: 1.0.0
End
Actual outcome
<h1>Test of extras</h1>
This is top: 1.0.0
In the snippet: {{test}}
End
What do I miss?
I'm using your nice plugin together with the
pymdownx.snippetspluginI have
and a
test.md# Test of extras This is top: {{test}} --8<-- "snippet.md" Endand a
snippet.mdIn the snippet: {{test}}Expected outcome
Actual outcome
What do I miss?