The Language
of Your
Thoughts
Markdown is plain text with a handful of symbols. No software required to read it. No format lock-in. No menus to navigate. Just you and your ideas.
Philosophy
Write first.
Format never.
Word processors make you a typographer before you are a thinker. You pick fonts, adjust margins, fight with bullet indentation — before you have written a single real sentence.
Markdown inverts this. A # means heading. A **word** means bold. That is the entire visual vocabulary. Everything else is your content.
Open any
app. Ever.
A .docx from 2005 may not open in 2035. A .md file from 1994 opens in every text editor ever built.
Markdown is stored as plain text. You own it completely. Copy it, email it, version-control it, read it in a terminal. No subscription cancels your access to your own thinking.
In_Practice
# Project Status ## In Progress - [x] Database schema - [x] Auth flow - [ ] API endpoints - [ ] UI components ## Notes Kick-off was **Monday**. Target: end of sprint.
Project Status
In Progress
✅ Database schema
✅ Auth flow
⬜ API endpoints
⬜ UI components
Notes
Kick-off was Monday. Target: end of sprint.
| Tool | Format | Portable | |-----------|-----------|----------| | Notion | Proprietary | ✗ | | Word | .docx | Partial | | mdcrypt | Markdown | ✓ | > Your notes should outlive the app you use to write them.
| Tool | Format | Portable |
|---|---|---|
| Notion | Proprietary | ✗ |
| Word | .docx | Partial |
| mdcrypt | Markdown | ✓ |
Your notes should outlive the app you use to write them.
## Book Notes — Thinking Fast and Slow **Core thesis:** Two cognitive systems govern decisions. - *System 1* — fast, instinctive, emotional - *System 2* — slow, deliberate, logical ``` Anchoring bias: first number seen skews all subsequent estimates. ```
Book Notes — Thinking Fast and Slow
Core thesis: Two cognitive systems govern decisions.
- System 1 — fast, instinctive, emotional
- System 2 — slow, deliberate, logical
Anchoring bias: first number seen skews all subsequent estimates.
For_Everyone
Already in your workflow
- —GitHub README and wikis are Markdown
- —Docstrings and JSDoc render as Markdown
- —Every major AI model outputs Markdown natively
- —Git diffs are clean — no binary format noise
- —Terminal-readable without any rendering step
Simpler than you think
- —15 rules covers 95% of everyday writing
- —Looks readable even without rendering
- —Works in any app — email, notes, docs
- —No software to install, no account needed
- —You already know bold and bullet points
“The best format is one you can read without opening an app.”
— On plain text permanence
Syntax_Reference
# H1 ## H2 ### H3
# prefix = heading level
**bold** *italic* ***bold italic***
- First item - Second item - Nested item
Indent 2 spaces to nest
1. First 2. Second 3. Third
- [x] Done - [ ] Todo
GFM extension, supported in mdcrypt
[Link text](https://url.com) [[Wiki Link]]
[[double bracket]] for internal notes
Use `code` inline.
```python
def hello():
return 'world'
```Specify language for syntax highlighting
> This is a quote. > It can span lines.
| Col A | Col B | |-------|-------| | val | val |
---
Three or more dashes
--- title: My Note tags: [idea] ---
Must be at the very top of the file
Why_It_Matters
AI-Native
Every major language model was trained on Markdown. Your notes are instantly machine-readable without any conversion step.
Version Control
Plain text diffs cleanly. Track every change with Git. See exactly what was added, removed, or moved — line by line.
Works Everywhere
GitHub, VS Code, Obsidian, Typora, terminal cat — every tool that touches text understands Markdown.
Offline Forever
No internet connection required to write or read. Your vault is a directory of text files. Always accessible.
Zero Learning Curve
You already know bold, bullets, and headings. The full syntax fits on one page. Fluency in 10 minutes.
Future-Proof
Text files written in 1994 open perfectly today. Your notes will still be readable in 2054, regardless of what apps exist.
Your notes.
Your format.
Forever.
mdcrypt stores everything as Markdown. No proprietary format. No lock-in. Switch tools anytime — your notes travel with you.
Open Your Crypt