# Escape code from the editor

We know how important your code is to you and the slightest little mistake can be detrimental to your output. So we've created two tags for you that each serves their purpose.

### Raw code

This tag tells the editor to disregard whatever is within it. The code won't be processed by the Editor, but it will be present at export for your ESP to process. This is useful when you have something you don't want the Editor to try and process, but still want it present for your own data processing in your ESP.

```
{% raw %}
// This is not processed by the Editor, but will be exported for your ESP
{% endraw %}
```

### Preview only

This tag give you some options to show something in the editor, but have something else displayed at export. This is particular useful for something like product variables or a recommended feed. You can have something neat and informative displayed for the user, but at the export have all the necessary variables injected that the user should not see.

```
{% if preview %}
// This is shown in the Editor for visual purposes
{% else %}
// But this is what's actually exported for the ESP
{% endif %}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.alpaco.email/how-to/escape-code-from-the-editor.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
