Escape code from the editor
Sometimes you want to display something for the editor, but have some other code executed on export, or sometimes you just want the code editor to leave your delicate ESP specific variables alone
Raw code
{% raw %}
// This is not processed by the Editor, but will be exported for your ESP
{% endraw %}Preview only
{% if preview %}
// This is shown in the Editor for visual purposes
{% else %}
// But this is what's actually exported for the ESP
{% endif %}Last updated