Help
This is simple Markdown note making app.
You can create, edit and save your notes in Markdown format.
Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Bold & Italics
**Bold** or __Bold__
*Italic* or _Italic_
~~Strikethrough~~
Lists
Unordered
- Item 1
- Item 2
- Subitem 1
- Subitem 2
Ordered
1. Item 1
2. Item 2
1. Subitem 1
2. Subitem 2
Links
[OpenAI](https://openai.com)
Images

Blockquotes
> This is a blockquote.
Code
Inline Code
Use `` tags for inline code.
Code Blocks
```
function helloWorld() {
console.log("Hello, world!");
}
```
Tables
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Data 1 | Data 2 | Data 3 |
| Data 4 | Data 5 | Data 6 |
Horizontal Line
---