1. Docs
  2. Formulas
  3. 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

1
{
2
"my_action": {
3
"status": "Superseded"
4
}
5
}

Formula

TO_MARKDOWN_STRIKE(my_action.status)

Output

"~~Superseded~~"
Was this helpful?