1. Docs
  2. Formulas
  3. Functions

TO_MARKDOWN_ITALIC

Format text as italic markdown. Underscores are used rather than an asterisk, so wrapping bold text does not produce the ambiguous text. Surrounding whitespace is trimmed, and blank text returns an empty string.

Categories: Text

Syntax

TO_MARKDOWN_ITALIC(text)

Examples

Example 1

Input

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

Formula

TO_MARKDOWN_ITALIC(my_action.status)

Output

"_Draft_"
Was this helpful?