Markdown Notes
Folders
- Personal
- Work
Notes
No note selected. Select a note or create a new one.
About Markdown Notes
This tool allows you to create and organize notes using Markdown formatting. Markdown is a lightweight markup language that allows you to write using an easy-to-read, easy-to-write plain text format, which is then converted to structurally valid HTML.
Features:
- Organize notes in folders
- Rich text formatting with Markdown
- Syntax highlighting for code blocks
- Search across all your notes
- Export notes as Markdown files
- Import/export your entire note collection
- Automatic saving to local storage
Markdown Cheat Sheet:
Headers
# Heading 1
## Heading 2
### Heading 3
Emphasis
*italic* or _italic_
**bold** or __bold__
~~strikethrough~~
Lists
- Item 1
- Item 2
- Nested item
1. First item
2. Second item
Links & Images
[Link text](https://example.com)

Code
`inline code`
```javascript
// code block
function test() {
console.log("hello");
}
```
Blockquotes & Dividers
> This is a blockquote
---
(horizontal rule)