Functions

style

Adds styles and colours to a string.

Category
Strings
Syntax
style(value, styles)
style(
    "Notion", 
    "b", "u"
)style(
    "Notion",

    /* Apply bold ("b") and underline ("u") styling to the supplied string */
    "b", "u"

)
=
Notion