Text Formatting
**bold text**
→
bold text
*italic text*
→
italic text
***bold italic***
→
bold italic
__underline__
→
underline
~~strikethrough~~
→
strikethrough
||spoiler||
→
spoiler
Headers
# Big header
→
Big header
## Medium header
→
Medium header
### Small header
→
Small header
-# Subtext
→
Subtext
Lists
- Item one
- Item two
→
• Item one
• Item two
1. First item
2. Second item
→
1. First item
2. Second item
Block Quotes
> Single line quote
→
Single line quote
>>> Multi-line quote
→
Multi-line quote
Code
`inline code`
→
inline code
```js
const x = 1;
```
→
const x = 1;
Tip: Add a language after ``` for syntax highlighting (js, python, css, etc.)
Headers, quotes, and lists must be at the start of a new line.