CuSO4_Deposit's Electrolytic Infodump

Markdown - Syntaxes that I don't Know

Syntaxes

- list 0
- list 1
    > This is a blockquote nested in a list
- list 2
``This is a code element with a backtick(`) inside.``
My favorite search engine is [DuckDuckGo](https://duckduckgo.com "The best search engine for privacy").
I love supporting the **[EFF](https://eff.org)**.
This is the *[Markdown Guide](https://www.markdownguide.org)*.
See the section on [`code`](#code).
This is a [text with link][1].

...

[1]: https://some.domain.tld/path#hashtag "title shown when hovering"
[![An old rock in the desert](/assets/images/shiprock.jpg "shiprock, new mexico by beau rogers")](https://www.flickr.com/photos/beaurogers/31833779864/in/photolist-Qv3rFw-34mt9F-a9Cmfy-5Ha3Zi-9msKdv-o3hgjr-hWpUte-4WMsJ1-KUQ8N-deshUb-vssBD-6CQci6-8AFCiD-zsJWT-nNfsgB-dPDwZJ-bn9JGn-5HtSXY-6CUhAL-a4UTXB-ugPum-KUPSo-fBLNm-6CUmpy-4WMsc9-8a7D3T-83KJev-6CQ2bK-nNusHJ-a78rQH-nw3NvT-7aq2qf-8wwBso-3nNceh-ugSKP-4mh4kh-bbeeqH-a7biME-q3PtTf-brFpgb-cg38zw-bXMZc-nJPELD-f58Lmo-bXMYG-bz8AAi-bxNtNT-bXMYi-bXMY6-bXMYv)
    this {
        is treated as
        a code block.
    }

Pandoc’s Markdown Best Practices

## Headers should be like this

###Never do this
# My heading {#identifier .class .class key=value key=value}
| 200 Main St.
| Berkeley, CA 94718
Here is a footnote reference,[^1] and another.[^longnote]

[^1]: Here is the footnote.

[^longnote]: Here's one with multiple blocks.

    Subsequent paragraphs are indented to show that they
belong to the previous footnote.

        { some.code }

    The whole paragraph can be indented, or just the first
    line.  In this way, multi-paragraph footnotes work like
    multi-paragraph list items.

This paragraph won't be part of the note, because it
isn't indented.
+ Pandoc's Markdown allows inline notes:
Here is an inline note.^[Inline notes are easier to write, since
you don't have to pick an identifier and move down to type the
note.]

#Markdown