Skip to main content

How can I use Markdown to format my text?

Using Markdown to bold, italicize, code block, quote, and more

Michael Villar avatar
Written by Michael Villar
Updated over 7 months ago

You can style your text in Height with markdown. Markdown lets you do things like bold and italicize text, add images, and create lists and headers.

Markdown mostly makes use of special characters like #, -, and `. You can use markdown in task descriptions and messages.

Markdown can be combined, so you can do things bold and italicize the same text.

What's supported?

Bold text = **Bold text**
Italic text = *Italic text*
Strikethrough text = ~~Strikethrough text~~

Large header = #Header
Medium header = ##Header

Small header = ###Header

Blockquote text = > Quoted text

Inline code = `Inline code`

Code blocks = ```Code block``` (written on 3 separate lines)

Unordered lists = * Item 1 OR - Item 1

Ordered lists = 1. Item 1

Did this answer your question?