Markdown - nomadjimbob/mikioplugin GitHub Wiki

Some element attributes support very basic markdown formatting in order to style content set by that attribute.

To use markdown, you need to wrap your text in asterisks to indicate the style you wish to use.

Italic

To use italic in the output of an attribute, surround the text using single asterisks.

this is *italic*:    this is italic
*italic is the future*:    italic is the future
only the letter a in *a*lphabet:    only the letter a in alphabet

Bold

To use bold in the output of an attribute, surround the text using double asterisks.

this is **bold**:    this is bold
**bold is the future**:    bold is the future
only the letter a in **a**lphabet:    only the letter a in alphabet

Bold and Italic

To use bold and italic in the output of an attribute, surround the text using triple asterisks.

this is ***bold and italic***:    this is bold and italic
***bold and italic is the future***:    bold and italic is the future
only the letter a in ***a***lphabet:    only the letter a in alphabet