# Syntax

Liquid is a template language, which means that it uses special syntax to mark the places where Liquid code starts and ends. In this way, Liquid code can be used to fill in calculated values in a larger document.

In Shopify, Liquid is usually found in HTML templates. In Mechanic, Liquid is usually found in JSON templates.

## Liquid with output

When using the `{{ code }}` syntax, the result of the Liquid code inside will form output.

In the following example, this syntax is used to output the string `"world"`. When this template is rendered, it will produce `Hello, world`.

```liquid
Hello, {{ "world" }}
```

## Liquid without output

When using the `{% ... %}` syntax, the Liquid code inside is given the opportunity to perform work without generating output. This syntax is for preparing and modifying [variables](/platform/liquid/basics/variables.md) (using tags like [assign](/platform/liquid/tags/assign.md)), or for specifying [control flow](/platform/liquid/basics/control-flow.md) (using [conditions](/platform/liquid/basics/control-flow/condition.md) or [iteration](/platform/liquid/basics/control-flow/iteration.md)).

In the following example, a variable is assigned, modified with a new variable, and is finally rendered as output.

```liquid
{% assign scope = "world" %}
{% assign message = "Hello, " | append: scope %}

{{ message }}
```


---

# 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://learn.mechanic.dev/platform/liquid/basics/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.
