Markdown Guide
What is Markdown?
- Markdown is a way of formatting text using symbols.
- This guide is written in Markdown, which is how you see the bullet points, headers, bold texts, italics, ~~strikethroughs~~, and underlines.
Guide
Text
Syntax | Renders |
---|---|
``inline code`` | inline code |
*italics* | italics |
**bold** | bold |
\~\~strikethrough\~\~ | ~~strikethrough~~ |
<ins>underlines</ins> | underlines |
Code blocks
Syntax:
``` code here
more code here ```
Renders:
code here
more code here
Inline Comments
Syntax:
> comment here
Renders:
comment here view properly on GitHub
Bullet Points
Syntax:
- bullet point
Renders:
- bullet point
Headers
Syntax:
# Big Header
## Slightly Smaller
### Smaller
#### Small
##### Very Small
###### Tiny
Renders: