---
title: TO_MARKDOWN_ITALIC
url: https://www.tines.com/stories/docs/formulas/functions/to-markdown-italic/
kind: formula-function
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/stories/docs/llms.txt) › [Formulas](https://www.tines.com/llm/stories/docs/formulas.md) › [Functions](https://www.tines.com/llm/stories/docs/formulas/functions.md)*

# TO_MARKDOWN_ITALIC

*[View on tines.com](https://www.tines.com/stories/docs/formulas/functions/to-markdown-italic/)*

Format text as italic markdown. Underscores are used rather than an asterisk, so wrapping bold text does not produce the ambiguous ***text***. Surrounding whitespace is trimmed, and blank text returns an empty string.

**Categories:** Text

## Syntax

```
TO_MARKDOWN_ITALIC(text)
```

## Examples

### Example 1

Input:

```json
{
  "my_action": {
    "status": "Draft"
  }
}
```

Formula:

```
TO_MARKDOWN_ITALIC(my_action.status)
```

Output:

```json
"_Draft_"
```
