Markdown is a lightweight markup language that allows you to format text using simple syntax DigiGoat uses
GFM (GitHub Flavored Markdown), but all markdown syntaxes are very similar. You can useittocreate headings, lists, links, and more. Here's a quick reference:
- Use '#' for Headings:
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
- You can also style text using markdown. Note: Styles can be nested inside of each other
- **Bold** OR __Bold__
- *Italic* OR _Italic_
- ***Bold and Italic*** OR ___Bold and Italic___
~~Strikethrough~~ OR ~Strikethrough~- <ins>Underline</ins>
- <sub>Subscript</sub>
- <sup>Superscript</sup>
`Inline Code````
Code Block
```
- Links: [Link Text](Link url) - ex. [DigiGoat](https://digigoat.app) ->DigiGoat
- Images:  - ex.  ->

- Lists:
- * List item
- - Another list item
- + Final list item
- Numbered Lists:
- First item
- Second item
- Third item
- Checkboxes:
- - [x] Completed item
- - [ ] Incomplete item
- Emojis: Use :EMOJICODE: (see Emoji Cheat Sheet)
- Anything you put between <!-- these lines --> will be hidden in the rendered output
- Finally, to type a character without triggering markdown, use a backslash (\) before the character. Ex. \*Not Bold\*