Headers
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
Paragraphs with styling
Basic inline paragraph
_Oh look! I'm sideways!_
**Bolded for important information!**
~~Removed content~~
Code blocks
# append to file
echo "Hello world" > ~/hello.txt
# view file
cat ~/hello.txt
<!-- simple html block -->
<div id="hello">Hi</div>
// simple console log message
console.log('hello there!');
Quote block
> Notice:
>
> This is quote box.
Alert blocks
Info
I'm a information note! Nice to meet you!
Warning
I'm a warning note! Nice to meet you!
Danger
I'm a danger note! Nice to meet you!
Success
I'm a success note! Nice to meet you! Listing blocks
You need to have:
- A computer
- A mouse
- A keyboard
Follow these steps:
1. Write anything you like
- Make sure to follow the syntax!
2. Name your file as a markdown file
- Has to have "md" at the end!
3. Commit your changes
- Have a informal message! It helps a lot!
Link blocks
Here is an example link: [example.com](https://example.com)
Also can be [inline](https://example.com) inside text!
Table block
|Name |Date |
|-----------|----------|
|John Doe |2024/08/10|