wikiToHTML()

This function renders rich text wiki content into HTML.


Bash
wikiToHTML(text) #Output: Text


Examples

Parser expression

Description

Bash
wikiToHTML("+Hello *world*!+")

This example returns

<p><ins>Hello <b>world</b>!</ins></p>

Bash
wikiToHTML(%{issue.description})

This example returns the description of the issue formatted in HTML.

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

text

text

Any given text that might contain rich text wiki content.

Output

This function returns a text


📚 Use cases and examples