Markdown Editor
Yooz Notes features a Bear-style live markdown editor with instant visual feedback. See your formatting as you type, no preview pane needed.
How It Works
Unlike traditional markdown editors with separate edit and preview modes, Yooz Notes shows formatted text inline. Type **bold** and it becomes bold immediately while remaining editable.
Text Formatting
Basic Styles
| Syntax | Result | Shortcut |
|---|---|---|
**text** | Bold | Cmd/Ctrl + B |
*text* | Italic | Cmd/Ctrl + I |
~~text~~ | - | |
`code` | Inline code | Cmd/Ctrl + E |
Combining Styles
You can combine formatting:
***bold and italic***becomes bold and italic**~~bold strikethrough~~**becomesbold strikethrough
Headings
Use # symbols for headings. More # means smaller heading:
# Heading 1 (largest)
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6 (smallest)
The first line of your note automatically becomes the title. Use # Heading for a clear, styled title.
Lists
Bullet Lists
- Item one
- Item two
- Nested item
- Another nested
- Item three
Numbered Lists
1. First step
2. Second step
3. Third step
Task Lists
Create interactive checkboxes:
- [ ] Incomplete task
- [x] Completed task
- [ ] Another todo
Click checkboxes to toggle completion status.
Links and Images
Links
[Link text](https://example.com)
[Yooz Notes](https://yooz.live/notes)
Images

You can also drag and drop images directly into your notes.
Code
Inline Code
Use backticks for inline code: `const x = 1` becomes const x = 1
Code Blocks
Use triple backticks with optional language for syntax highlighting:
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
```
Supported languages include: JavaScript, TypeScript, Python, Rust, Go, HTML, CSS, JSON, YAML, Bash, and many more.
Blockquotes
Use > for quotes:
> This is a blockquote.
> It can span multiple lines.
>
> > Nested quotes work too.
Horizontal Rules
Create dividers with three or more dashes, asterisks, or underscores:
---
***
___
Tables
Create tables using pipes and dashes:
| Feature | Free | Pro |
|---------|------|-----|
| Notes | Unlimited | Unlimited |
| Encryption | Yes | Yes |
| Sync | No | Yes |
Alignment options:
:---Left align:---:Center align---:Right align
Mermaid Diagrams
Yooz Notes supports Mermaid diagrams for flowcharts, sequence diagrams, and more:
```mermaid
graph LR
A[Write] --> B[Format]
B --> C[Share]
```
See Mermaid Diagrams for complete documentation.
Keyboard Shortcuts
| Action | macOS | Windows/Linux |
|---|---|---|
| Bold | Cmd + B | Ctrl + B |
| Italic | Cmd + I | Ctrl + I |
| Code | Cmd + E | Ctrl + E |
| Link | Cmd + K | Ctrl + K |
| Heading | Cmd + 1-6 | Ctrl + 1-6 |
| New Note | Cmd + N | Ctrl + N |
| Search | Cmd + F | Ctrl + F |
| Save | Auto | Auto |
Best Practices
Structure Your Notes
- Start with a heading - Makes the title clear
- Use subheadings - Break content into sections
- Keep paragraphs short - Easier to scan
- Use lists - For steps or related items
Markdown Tips
- Don't over-format - Let content speak
- Use task lists - Track todos inline
- Add code blocks - For technical notes
- Include diagrams - Visualize complex ideas
Privacy Note
All markdown rendering happens locally in your browser. Your notes never leave your device for formatting.