Markdown Formatting
ThoughtFree supports rich markdown formatting in your thoughts. When you use markdown syntax, your thoughts are rendered with proper formatting in the app.
Text Formatting
Section titled “Text Formatting”| Syntax | Result |
|---|---|
**bold** | bold |
*italic* | italic |
~~strikethrough~~ | |
`inline code` | inline code |
Headings
Section titled “Headings”# Heading 1## Heading 2### Heading 3#### Heading 4##### Heading 5###### Heading 6Unordered Lists
Section titled “Unordered Lists”- First item- Second item- Third itemOrdered Lists
Section titled “Ordered Lists”1. First step2. Second step3. Third stepTask Lists (Checklists)
Section titled “Task Lists (Checklists)”- [x] Completed task- [ ] Pending task- [ ] Another pending taskTask lists are interactive — tap the checkbox to toggle completion.
[Link text](https://example.com)Bare URLs are also auto-linked: just paste https://example.com and it becomes clickable.
Blockquotes
Section titled “Blockquotes”> This is a blockquote.> It can span multiple lines.Code Blocks
Section titled “Code Blocks”Use triple backticks for code blocks:
```function hello() { console.log("Hello, world!");}```You can add a language hint after the opening backticks for syntax highlighting:
```javascriptconst greeting = "Hello!";```Tables
Section titled “Tables”| Column 1 | Column 2 | Column 3 ||----------|----------|----------|| Cell 1 | Cell 2 | Cell 3 || Cell 4 | Cell 5 | Cell 6 |Alignment is supported:
| Left | Center | Right ||:-----|:------:|------:|| L | C | R |Horizontal Rules
Section titled “Horizontal Rules”Any of these create a horizontal divider:
---***___Combining Formats
Section titled “Combining Formats”You can combine markdown features:
## Shopping List
**Important items:**
- [x] Milk- [ ] Eggs- [ ] Bread
> Remember to check for sales!
| Store | Distance | Rating ||-------|----------|--------|| Mart | 0.5 mi | ★★★★ || Shop | 1.2 mi | ★★★★★ |Tips for Effective Formatting
Section titled “Tips for Effective Formatting”- Use headings to structure longer notes
- Use task lists for actionable items — they integrate with the Today view
- Use tables for comparisons or structured data
- Use blockquotes to highlight key takeaways
- Keep it simple — markdown works best when it’s readable in plain text too