MARKY MD

4,207 people have felt the vibration

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

Markdown
# Heading 1
## Heading 2
### Heading 3
Rendered

Heading 1

Heading 2

Heading 3

Markdown
**bold** and *italic*
~~strikethrough~~
`inline code`
Rendered

bold and italic
strikethrough
inline code

Markdown
[link text](https://marky.md)
Rendered
Markdown
- Item one
- Item two

1. First
2. Second
Rendered
  • Item one
  • Item two
  1. First
  2. Second
Markdown
> This is a blockquote
> with multiple lines
Rendered

This is a blockquote with multiple lines

Markdown
```
code block
```
Rendered
code block
Markdown
| Name | Value |
|------|-------|
| A    | 1     |
Rendered
NameValue
A1
Markdown
- [x] Done
- [ ] Todo
Rendered
  • 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.