notes/vault/Markdown Syntax.md
enzotar 706c7ac5ad feat: Graph Notes app with semantic zoom graph, wikilink tokens, and shadcn-inspired UI
- Tauri v2 desktop app with React, TypeScript, Tailwind CSS v4
- Contenteditable editor with [[wikilink]] token chips (compact pills, unwrap on backspace/delete)
- Wikilink autocomplete: type [[ to search and link notes
- Force-directed graph view with semantic zoom (circle→card morph)
- Single-click zooms into node, double-click opens note
- shadcn-inspired design system: zinc neutrals, purple accents, gradient buttons
- Sidebar with search, file tree, active indicators, daily note shortcut
- Backlinks panel showing linked mentions with context
- File-based vault stored in local filesystem via Tauri FS plugin
2026-03-07 00:21:49 -08:00

39 lines
855 B
Markdown

# Markdown Syntax
Graph Notes uses standard **Markdown** for formatting your notes.
## Basic Formatting
- **Bold** with `**text**`
- *Italic* with `*text*`
- `Code` with backticks
- ~~Strikethrough~~ with `~~text~~`
## Wikilinks
The most important feature! Link to other notes with double brackets:
- `[[Welcome]]` → links to the [[Welcome]] note
- `[[Daily Notes]]` → links to [[Daily Notes]]
- `[[Note Name|display text]]` → shows custom text
## Headers
Use `#` for headers — from `#` (h1) to `######` (h6).
## Lists
- Unordered lists with `-` or `*`
- Numbered lists with `1.`
- Nested lists with indentation
## Code Blocks
Use triple backticks for code blocks with syntax highlighting.
## Links and Images
- Links: `[text](url)`
- Images: `![alt](url)`
See [[Welcome]] for an overview, or start writing in your [[Daily Notes]].