Closed joonaspaakko closed 2 years ago
The {{ example }}
is getting caught be the templating engine. There are four options:
Add the following config to your retype.yml
file:
templating:
enabled: false
Add the following config to your .md
page metadata section:
---
templating: false
---
# My sample page
Wrap the snippet with templating {%{
and }%}
escape tags.
```
{%{{{ example }}}%}
```
Wrap the templating escape tags around the entire code block.
{%{
```
{{ example }}
```
}%}
Any one of the above options should solve the issue.
Hope this helps.
Ah right. It didn't occur to me that it might be a thing... I'm not using it so I disabled it.
Retype version: 2.4.0. I thought this wasn't always the case, but I tried to downgrade and it didn't seem to have any effect...
This:
{{ example }}
Becomes:
This:
{{ example }.}
Becomes: