Formatting text

You can use Markdown format to add formatting to your text.

Markdown uses symbols typed in your text to represent formatting:

*italics* = italics
**bold** = bold

`monospaced` = monospaced (Note that these are backticks and not quotes!)

[Link title](https://link.url) = Link title (Hotlink)

![](https://image.url/img.jpg) = In-line image

Providing a bare image URL will auto-convert it into an inline image.

You can also create "block-level" styling, or styles that only work at the paragraph level:

# Heading size 1
## Heading size 2
### Heading size 3
#### Heading size 4
##### Heading size 5

Heading size 1

Heading size 2

Heading size 3

Heading size 4

Heading size 5

You can indent a text block with a leading chevron:

> This will indent text.

This will indent text.

There is as yet no way to center a text block or add formatting like colors. These will come later.