> 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-html-support.md).

# Fields - HTML Support

You can pass HTML as a field value to get the dynamic formatted text inside the output Document.

<figure><img src="https://1713720388-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FIRMYKAUZ0NsaDRvNONC3%2Fuploads%2FHKeAHKs1PUaK41rwnW1i%2Fimage.png?alt=media&amp;token=22940511-b127-4698-8aeb-1a04b30f36d0" 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 HTML as input
{#*people.description} - Special field in table/section "people" that support HTML as input
```

#### Supported HTML Tags

Excel cell formatting has limited capabilities compared to HTML formatting. Please see list below for supported html to excel formatted cell elements

```
<b>, <strong> -> bold
<i>, <em> -> italic
<u>, <ins> -> underline
<strike>,<s>,<del> -> strikethrough
<sub> -> subscript
<span> -> text styles
<p>, <div>, <pre> -> moving to new line
<h1>...<h6> -> text-styles
<code> -> text-styles
<ul>, <ol> -> text-indentation
<table> -> table to text represantion
<a>, <img> -> text-only
<br> -> newline
```
