Skip to content

Latest commit

 

History

History
69 lines (35 loc) · 1.94 KB

markdown.md

File metadata and controls

69 lines (35 loc) · 1.94 KB

#⃣ #⃣ Markdown

Headings

StyleSyntaxExampleOutput
Heading 1## this is heading 1

Heading 1

Heading 2#### this is heading 2

Heading 2

Heading 3###### this is heading 3

Heading 3

Styling Text

StyleSyntaxExampleOutput
Bold** ** OR
__ __
**this is bold**this is bold
Italics_ __italic text_this is italic
Strikethrough~~ ~~~~strikethrough~~strikethrough

Quotes

You can quote text by typing " + Spaceat the beginning of your quote.

This is a quote

Lists

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.

Checkbox

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.

Divider

To insert to divider, start with an empty line and type *** or ---

Format as code

Type ` around the text to format it as code