
# Awesome Markdown
══════════════════════════════════════════════════

A paragraph with emphasis, strong, strike, and
`inline code`, a labeled link
(https://example.com), an inline image
(diagram.png), and a bare https://rust-lang.org
autolink that is long enough to wrap.


## Lists
──────────────────────────────────────────────────

• first bullet
• second bullet with enough words to wrap across
  the line
  • nested bullet item

1. one
2. two

### Tasks

[x] done item
[ ] pending item


## Quote
──────────────────────────────────────────────────

> a quote long enough to wrap onto a second line
> when narrow
>
> • quoted bullet


## Code
──────────────────────────────────────────────────

    fn main() {
        println!("hi");
    }

    indented code line


## Table
──────────────────────────────────────────────────

| Left   | Center | Right |
|:-------|:------:|------:|
| a      |   bb   |   ccc |
| longer |   x    |     y |


## Footnote
──────────────────────────────────────────────────

Here is a note.[^n]

──────────────────────────────────────────────────

<div>raw &amp; inert</div>

[^n]: The footnote body.
