# Markdown syntax

wander reads and writes standard markdown, with the common Obsidian extensions.

## Text

**bold** · *italic* · ~~strikethrough~~ · `inline code`

## Headings

# Heading 1
## Heading 2
### Heading 3

## Lists

- a bullet
- another bullet
  - nested

1. numbered
2. second

- [ ] a task
- [x] a done task

## Quotes and rules

> a blockquote

---

## Links

[a link](https://wander.md)

Welcome — a wikilink to another note in the vault

## Code

```
a fenced code block
```

## Diagrams

```mermaid
graph TD
  idea --> note --> vault
  vault --> anywhere[any markdown app]
```

A ```` ```mermaid ```` fence renders as a live diagram — click it to edit the source, click preview to see it drawn. Works offline; the file keeps plain text. See demo/Diagrams for more.

## Tables

| left | right |
| ---- | ----- |
| a    | b     |

See these live in the demo/Formatting and demo/Tables pages.
