Markdown Formatting
Sidvy’s editor renders markdown in real-time as you type. Here’s a complete guide to formatting.
Text Formatting
Section titled “Text Formatting”Basic Styles
Section titled “Basic Styles”| Syntax | Result | Shortcut |
|---|---|---|
**bold** | bold | Cmd/Ctrl + B |
*italic* | italic | Cmd/Ctrl + I |
~~strikethrough~~ | - | |
`code` | code | Cmd/Ctrl + E |
Combined Formatting
Section titled “Combined Formatting”You can combine styles:
***bold and italic***renders as bold and italic**bold withcode**works too
Headings
Section titled “Headings”# Heading 1## Heading 2### Heading 3#### Heading 4##### Heading 5###### Heading 6Use keyboard shortcuts Cmd/Ctrl + Alt + 1 through 6 for quick heading insertion.
Bullet Lists
Section titled “Bullet Lists”- Item one- Item two - Nested item - Another nested- Item threeNumbered Lists
Section titled “Numbered Lists”1. First item2. Second item 1. Nested numbered 2. Another nested3. Third itemCheckbox Lists
Section titled “Checkbox Lists”- [ ] Unchecked todo- [x] Completed todo- [ ] Another taskCheckboxes are clickable and sync with the Todos feature.
Standard Links
Section titled “Standard Links”[Link text](https://example.com)Auto-linking
Section titled “Auto-linking”URLs are automatically converted to clickable links:
https://example.comWiki Links
Section titled “Wiki Links”Link to other notes:
[[Note Name]]See Wiki Links for details.
Images
Section titled “Images”Drag and Drop
Section titled “Drag and Drop”Simply drag an image file onto the editor.
Copy an image and paste it directly (Cmd/Ctrl + V).
Markdown Syntax
Section titled “Markdown Syntax”Inline Code
Section titled “Inline Code”Wrap text in backticks:
Use the `console.log()` functionCode Blocks
Section titled “Code Blocks”Use triple backticks with an optional language:
```javascriptfunction hello() { console.log("Hello, world!");}```Supported languages include: javascript, typescript, python, html, css, json, markdown, bash, and many more.
Block Quotes
Section titled “Block Quotes”> This is a quote.> It can span multiple lines.>> And have multiple paragraphs.Horizontal Rules
Section titled “Horizontal Rules”Any of these create a horizontal line:
---***___Tables
Section titled “Tables”| Header 1 | Header 2 | Header 3 ||----------|----------|----------|| Cell 1 | Cell 2 | Cell 3 || Cell 4 | Cell 5 | Cell 6 |Tables support:
- Column resizing by dragging borders
- Adding/removing rows and columns via hover actions
- Cell selection and editing
Use hashtags to categorize notes:
This note is about #productivity and #planningTags are clickable and appear in the Tags panel.
Escaping
Section titled “Escaping”Use backslash to show literal characters:
\*not italic\*\[[not a wiki link\]]\#not a tag