You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried to use filters from markdown files (e.g. add {{ component | react }} in an .md files), but it seems the generated html content is just placed in output folder as it is returned from omd.
I wonder if it would be possible to process with jinja the resulting html from markdown. This would allow to apply filters inside md files.
For escaping, one could use jinja raw blocks. As long as they remain in same line it would work fine:
{% raw %}Anything in this block is treated as raw text,
including {{ curly braces }} and
{% other block-like syntax %}{% endraw %}
This would have an impact in performance as well, I imagine.
The text was updated successfully, but these errors were encountered:
Maybe this is a very bad idea 😅
I have tried to use filters from markdown files (e.g. add
{{ component | react }}
in an.md
files), but it seems the generated html content is just placed in output folder as it is returned from omd.I wonder if it would be possible to process with jinja the resulting html from markdown. This would allow to apply filters inside md files.
For escaping, one could use jinja raw blocks. As long as they remain in same line it would work fine:
This would have an impact in performance as well, I imagine.
The text was updated successfully, but these errors were encountered: