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

1
{
2
"my_action": {
3
"severity": "Critical"
4
}
5
}

Formula

TO_MARKDOWN_BOLD(my_action.severity)

Output

"**Critical**"
Was this helpful?