> For the complete documentation index, see [llms.txt](https://docs.usestencil.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.usestencil.com/using-stencil/template-editor-1/limited-markdown-supports.md).

# Limited Markdown Supports

Text object now supports limited markdown support so you can add bold, italic, underline, strikethrough and any combination of those options.

To enable this feature, click on your text object and find `Enable Markdown` option in the properties pane.

<figure><img src="/files/U6GMzKuUsDMlgu3F3sSX" alt=""><figcaption><p>Markdown option</p></figcaption></figure>

### Supported options

| Token               |                   |
| ------------------- | ----------------- |
| `**Bold**`          | **Bold**          |
| `***Bold/Italic***` | ***Bold/Italic*** |
| `_Italic_`          | *Italic*          |
| `__Underscore__`    | Underscore        |
| `~~Strikethrough~~` | ~~Strikethrough~~ |

### Integrations

You can use this feature through our API, Test Console, Signed URL, Query String URL, and all other integrations that we have as long as the template has `Enable Markdown` option enabled.

### Example

```json
{
  "template": "8ad9a3b8-cd62-4ac9-9b6f-d019addd8a04",
  "modifications": [
    {
      "name": "text_1",
      "text": "**Bold** _Italic_ ***Bold/Italic*** __Underscore__ ~~Strikethrough~~ **__Combination__**"
    }
  ]
}
```

<div><figure><img src="/files/2pTvO4QxDHHcMxZhrUFl" alt=""><figcaption></figcaption></figure> <figure><img src="/files/yOg0EnaWDuXeLz7KMwW5" alt=""><figcaption></figcaption></figure></div>


---

# 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.usestencil.com/using-stencil/template-editor-1/limited-markdown-supports.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.
