Skip to content

Text Formatting#

The website includes built-in markdown support, making the text formatting simple and flexible.

Some of the most common text formatting examples:

Heading#

Use the syntax # Heading level 1, ## Heading level 2, ### Heading level 3, and similar up to 6 levels.

Italic text#

My italic text uses the syntax *My italic text*

Bold text#

My bold text uses the syntax **My bold text**

Bold and Italic text#

My bold italic text uses the syntax ***My bold italic text***

Blockquotes text#

Use the syntax > My blockquote text

My blockquote text

List#

To create an ordered list, add line items with numbers followed by periods. The numbers don’t have to be in numerical order, but the list should start with the number one.

  1. A
  2. B
  3. C

To create an unordered list, add dashes (-), asterisks (*), or plus signs (+) in front of line items. Indent one or more items to create a nested list.

  • A
  • B
  • C

My link uses the syntax [My link](https://example.com)

Image#

Use syntax ![image name](/examples/image.png)

image name

Other#

Follow the markdown guide for more syntax.