# Syntax

VTE syntax is basically split between two things: Tags and Expressions.

```markup
<html>
    <head>
        <title> {{ title }} </title>
    </head>
    <body>
        <ul>
            {% for user in users %}
                <li> {{ user.name}} </li>
            {% endfor %}
        </ul>
    </body>
</html>
```

1\) Expressions are delimited by "{ { variable\_name } }" and they are used to print data.

2\) Tags are delimited by "{ % tag\_name % }" and they are used to express intents like loops, conditionals, etc.

> There are many default tags and you can create your own too by adding an extension, you can also customize the markers so instead of "{%" you could use "#\[" or whatever do you think it's best.


---

# 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://docs.vibora.io/v0.1.0/engine/syntax.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.
