---
title: TO_MARKDOWN_STRIKE
url: https://www.tines.com/stories/docs/formulas/functions/to-markdown-strike/
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_STRIKE

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

Format text as strikethrough markdown. Surrounding whitespace is trimmed, and blank text returns an empty string.

**Categories:** Text

## Syntax

```
TO_MARKDOWN_STRIKE(text)
```

## Examples

### Example 1

Input:

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

Formula:

```
TO_MARKDOWN_STRIKE(my_action.status)
```

Output:

```json
"~~Superseded~~"
```
