> For the complete documentation index, see [llms.txt](https://docs.fillthedoc.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fillthedoc.com/templates/concepts.md).

# Glossary

| Document builder | The environment in which the documents/templates are created.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |   |                                                                                                                                                                                                                                                                                                                                                                                                         |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | - | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Form             | List of all steps and fields, is on the left side of a template.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |   |                                                                                                                                                                                                                                                                                                                                                                                                         |
| If-statement     | An if/then condition. If X, then Y                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |   |                                                                                                                                                                                                                                                                                                                                                                                                         |
| Mustaches        | To dynamically create a document, mustaches `{{ }}` are used. To make a field editable in the text, the name of the field must be covered by two mustaches on both sides: `{{ field }}`. Without mustaches, the fields are not usable.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |   |                                                                                                                                                                                                                                                                                                                                                                                                         |
| Operator         | <p>A symbol that is used with variables to perform various functions. Think of arithmetic or logical functions. The most commonly used operators are explained below:</p><p></p><p><strong>Arithmetic operators</strong></p><ul><li><code>+</code> Add</li><li><code>-</code> Subtract</li><li><code>\*</code> Multiply</li><li><code>/</code> Divide</li></ul><p><strong>Comparison operators</strong></p><ul><li><code>==</code> is equal to</li><li><code>!=</code> is not equal to</li><li><code>></code> is greater than</li><li><code><</code> is smaller than</li><li><code>>=</code> is greater than or > equal to</li><li><code><=</code> is smaller than or > equal to</li></ul><p><strong>Logical operators</strong></p><ul><li><code>&&</code> AND ("and")</li><li><code> |   | </code> OR ("or")</li><li><code>!</code> NOT ("not")</li></ul><p><strong>String operators</strong></p><p>With the plus symbol (<code>+</code>), we can combine two strings.</p><p>For example:<br> <code>text1 = "Two strings "</code><br> <code>text2 = "combined"</code><br> <code>text3 = text1 + text2</code></p><p>The content of variable text 3 is now: <code>"Two strings combined"</code>.</p> |
| Programming      | Term for making pieces of text in a template dynamic.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |   |                                                                                                                                                                                                                                                                                                                                                                                                         |
| Template         | A template is a digitized document.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |   |                                                                                                                                                                                                                                                                                                                                                                                                         |
| Text             | The text is understood to mean the text of a template and is to the right of the form.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |   |                                                                                                                                                                                                                                                                                                                                                                                                         |
| User             | The user is understood to mean the end user of the software.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |   |                                                                                                                                                                                                                                                                                                                                                                                                         |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.fillthedoc.com/templates/concepts.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
