---
title: TO_MARKDOWN_BOLD
url: https://www.tines.com/stories/docs/formulas/functions/to-markdown-bold/
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_BOLD

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

Format text as bold markdown. Surrounding whitespace is trimmed, because markdown ignores a delimiter with whitespace against its inner edge. Blank text returns an empty string.

**Categories:** Text

## Syntax

```
TO_MARKDOWN_BOLD(text)
```

## Examples

### Example 1

Input:

```json
{
  "my_action": {
    "severity": "Critical"
  }
}
```

Formula:

```
TO_MARKDOWN_BOLD(my_action.severity)
```

Output:

```json
"**Critical**"
```
