---
hi: "{% test %}"
---
{{ hi | renderContent("njk") }}
Related to #3369
This is different from:
---
hi: "{% test %}"
---
{% renderTemplate %}{{ hi }}{% endrenderTemplate %}
which renders plain raw text {% test %} because only the content {{ hi }} is rendered by the renderTemplate shortcode (not the return content inside the variable)
Related to #3369
This is different from:
which renders plain raw text
{% test %}because only the content{{ hi }}is rendered by therenderTemplateshortcode (not the return content inside the variable)