# 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.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |   |                                                                                                                                                                                                                                                                                                                                                                                                         |
