# Markdown Basics

This page shows every standard Markdown element MD Visor renders - no special extensions
needed, these all work in any Markdown editor.

## Headings

Headings go from `#` (largest) down to `######` (smallest):

```markdown
# Heading level 1
## Heading level 2
### Heading level 3
```

## Emphasis

**Bold**, *italic*, ***bold and italic***, ~~strikethrough~~, and ==highlighted== text, all inline.

## Lists

Bulleted, with nesting:

- Coffee
- Tea
  - Green tea
  - Black tea
- Water

Numbered:

1. Preheat the oven
2. Mix the ingredients
3. Bake for 25 minutes

Task list:

- [x] Write the first draft
- [ ] Get it reviewed

## Links

[Learn more about Markdown](https://example.com) - hover to see the target, click to open it in
your browser.

## Blockquote

> A blockquote sets a passage visually apart from the rest of the text - handy for a quotation,
> a callout, or an aside.

## Inline and block code

Inline code looks like `this`. A fenced block gets syntax highlighting:

```python
def greet(name: str) -> str:
    return f"Hello, {name}!"
```

## Table

| Left-aligned | Centered | Right-aligned |
| :--- | :---: | ---: |
| a | b | c |
| 100 | 200 | 300 |

## Horizontal rule

Used to separate distinct sections of content.

---

That's every basic building block - combine them freely. MD Visor also adds a number of
extensions on top (math, diagrams, tables from CSV, cross-references, ...) covered by the other
example documents in this series.
