---
title: TO_MARKDOWN_CALLOUT
url: https://www.tines.com/stories/docs/formulas/functions/to-markdown-callout/
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_CALLOUT

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

Format text as a markdown callout, the GitHub-flavored alert built on a blockquote. The type defaults to NOTE and must be a single word of letters, such as TIP, IMPORTANT, WARNING, or CAUTION. Blank text returns the callout title on its own.

**Categories:** Text

## Syntax

```
TO_MARKDOWN_CALLOUT(text, [type])
```

## Examples

### Example 1

Input:

```json
{
  "my_action": {
    "message": "The host has been isolated"
  }
}
```

Formula:

```
TO_MARKDOWN_CALLOUT(my_action.message)
```

Output:

```json
"> [!NOTE]\n> The host has been isolated"
```

### Example 2: The type is a single word of letters, and it is upcased for you.

Input:

```json
{
  "my_action": {
    "message": "The host has been isolated"
  }
}
```

Formula:

```
TO_MARKDOWN_CALLOUT(my_action.message, "warning")
```

Output:

```json
"> [!WARNING]\n> The host has been isolated"
```
