Ⓜ
Markdown
Style | Syntax | Example | Output |
---|---|---|---|
Bold | ** ** OR
__ __ | **this is bold** | this is bold |
Italics | _ _ | _italic text_ | this is italic |
Strikethrough | ~~ ~~ | ~~strikethrough~~ | strikethrough |
Bold and italics | **_ _** | **Bold text and _nested italic_ text** | Bold text and nested italic text |
You can quote text by typing
"
+ Space
at the beginning of your quote.This is a quote
You can create an unordered list by adding a
- or *
before the text.* First list item
* Second list item
- First list item
- Second list item
To create an ordered list, start each line with a number followed by a
.
symbol.1. First list item
2. Second list item
You can press
Tab
or Shift + Tab
to indent or unindent a list item.
To create a checkbox item, start with a hyphen
-
and followed by []
or [x]
, and
press space
-[x] This is a completed task.
-[] This is an incomplete task.
You can press
Tab
or Shift + Tab
to indent or unindent a checkbox item.
To insert to divider, start with an empty line and type *** or
---
Type
`
around the text to format it as code
Type
>
+ Space
at the beginning of the lineLast modified 1mo ago