06 Text Formatting

Use formatting syntax in any text field across all sections.

Bold

Use **text** to make text bold.

This is bold text.
This is **bold** text.

Italic

Use *text* to make text italic.

This is italic text.
This is *italic* text.

Bold + Italic

Use ***text*** for bold and italic.

This is bold and italic text.
This is ***bold and italic*** text.

Strikethrough

Use ~~text~~ for strikethrough.

This is strikethrough text.
This is ~~strikethrough~~ text.

Underline

Use ++text++ for underline.

This is underline text.
This is ++underline++ text.

Highlight

Use ==text== for highlight.

This is highlight text.
This is ==highlight== text.

Superscript & Subscript

Use ^text^ for superscript and ~text~ for subscript.

E=mc2   H2O
E=mc^2^  H~2~O

Inline Code

Use `text` for inline code.

Use the npm install command.
Use the `npm install` command.

Custom Link

Use {text|url} for a custom bold link.

Visit my lab for details.
Visit {my lab|https://example.com} for details.

New Line

Use \n to insert a line break within a paragraph.

Line one.
Line two.
Line one.\nLine two.

Escape Character

Use \ before a special character to display it literally.

This is *not italic* text.
This is \*not italic\* text.