Help
Markdown
Origin & History
John Gruber created Markdown in 2004 with significant input from Aaron Swartz. The goal was a plain-text format that is readable as-is and converts cleanly to HTML.
CommonMark (2014) standardized the spec, resolving ambiguities in Gruber's original description. GitHub Flavored Markdown (GFM) extended CommonMark with tables, task lists, and strikethrough. Marky uses GFM rendering via Goldmark.
Syntax Reference
# Heading 1 ## Heading 2 ### Heading 3
Heading 1
Heading 2
Heading 3
**bold** and *italic* ~~strikethrough~~ `inline code`
bold and italic
strikethrough
inline code
[link text](https://marky.md)
- Item one - Item two 1. First 2. Second
- Item one
- Item two
- First
- Second
> This is a blockquote > with multiple lines
This is a blockquote with multiple lines
``` code block ```
code block
| Name | Value | |------|-------| | A | 1 |
| Name | Value |
|---|---|
| A | 1 |
- [x] Done - [ ] Todo
- Done
- Todo
IPFS
What is IPFS?
IPFS (InterPlanetary File System) uses content addressing instead of location addressing. Rather than asking "where is this file?" you ask "who has this content?" Every piece of content gets a unique CID (Content Identifier) derived from its hash. If the content changes, the CID changes.
Marky uses IPFS to pin your markdown documents. When you save, the raw markdown is pinned and you get a permanent, content-addressed link. Because the CID is derived from the content itself, the same document always produces the same link.
Origin & History
Juan Benet created IPFS at Protocol Labs and launched it in 2015. The project draws on ideas from Git, BitTorrent, and distributed hash tables to build a peer-to-peer hypermedia protocol. Filecoin, a blockchain-based storage network, provides economic incentives for long-term data persistence on IPFS.