> ## Documentation Index
> Fetch the complete documentation index at: https://docs.iinkedsign.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Learn how to use template tags to help automate your document templating.

## What are template tags?

Template tags are placeholders within your documents that are automatically replaced with fields when creating or updating a signing package.
This allows for greater flexibility and automation in document templating, as you can create documents with template tags
that adapt to different contexts and user inputs.

## Tag syntax

Template tags are defined directly in your documents using double curly braces `{{ }}` and can include various parameters to customize their behavior.
For example, a simple template tag for a text field might look like this:

```handlebars theme={null}
{{signer_1:text}}
```

When the document is processed, this tag will be replaced with a text field for the first signer.

## Structure

Template tags generally follow this structure:

```handlebars theme={null}
{{signer_<signer_number>:<tag_type>[_<tag_id>][_<tag_property>]...}}
```

## Signer identifiers

| Signer number | Description                                                                      |
| ------------- | -------------------------------------------------------------------------------- |
| `signer_host` | Specifies the host of a **Video Signing Room** or **In Person** signing package. |
| `signer_1`    | Specifies the first signer.                                                      |
| `signer_2`    | Specifies the second signer.                                                     |
| ...           | ...                                                                              |
