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

# Fields - Markdown Support

<figure><img src="/files/tIbN01VrBun1nY51dO7n" alt="" width="314"><figcaption></figcaption></figure>

#### Syntax

You need to add an "!" in front of your field name The final syntax should be: **{!fieldName}**

```
{description} - Regular Field that supports only regular text / number
{!description} - Special field that supports markdown as input
{#!people.description} - Special field in table/section "people" that support markdown syntax as input
```

#### Supported Markdown Tags

Please check: <https://www.markdownguide.org/cheat-sheet/>

Syntax examples:

```
**bold text** -> bold  
*italic text* -> italic  
_underline text_ -> underline  
~~strikethrough text~~ -> strikethrough  
# Heading 1 -> heading 1  
## Heading 2 -> heading 2  
### Heading 3 -> heading 3  
`inline code` -> inline code  
[Link text](https://example.com) -> link text  
![Alt text](image.png) -> alt text  
Line 1\nLine 2 -> newline
```
