40 lines
855 B
Markdown
40 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: ``
|
||
|
|
|
||
|
|
See [[Welcome]] for an overview, or start writing in your [[Daily Notes]].
|