Markdown Reference
Atlas notes use standard Markdown. If you’ve written markdown before, everything you know already works. This page is a quick cheat sheet you can refer back to.
Headings
Section titled “Headings”# Heading 1## Heading 2### Heading 3#### Heading 4Use headings to organize sections within a note. Heading 1 (#) is typically your note title.
Text formatting
Section titled “Text formatting”**bold text***italic text*~~strikethrough~~Renders as: bold text, italic text, strikethrough
You can combine them: **_bold and italic_**
Bullet list:
- First item- Second item - Nested item - Another nested item- Third itemNumbered list:
1. First step2. Second step3. Third stepNumbered lists stay in order even if you rearrange them — just use 1. for every item and the renderer handles the numbering.
Task checkboxes
Section titled “Task checkboxes”- [ ] Buy groceries- [ ] Finish the proposal- [x] Send weekly updateRenders as interactive checkboxes. Tasks with [x] are marked complete. Atlas can read, add, and toggle tasks in your notes via the task tools.
External link:
[Link text](https://example.com)Wiki-link to another note:
[[Note Name]][[Note Name|Custom display text]]Wiki-links connect your notes together and appear in your network graph. See Linking Notes for more.
Images
Section titled “Images”Images can be relative paths (files inside your vault) or full URLs. The alt text is shown if the image can’t load and is important for accessibility.
Inline code:
Use `console.log()` to debug.Code block with syntax highlighting:
```pythondef hello(): print("Hello, Atlas!")```Supported languages include python, javascript, typescript, rust, bash, sql, json, yaml, markdown, and many more.
Tables
Section titled “Tables”| Name | Role | Status ||------------|------------|---------|| Alex | Designer | Active || Jordan | Engineer | On leave |Columns align automatically. You can left-, center-, or right-align columns:
| Left | Center | Right ||:-----|:------:|------:|| text | text | text |Blockquotes
Section titled “Blockquotes”> This is a quoted passage or important callout.>> It can span multiple paragraphs.Blockquotes are useful for quotations, key takeaways, or highlighting important text.
Horizontal rules
Section titled “Horizontal rules”---A horizontal rule creates a visual divider between sections. Three or more hyphens on a line by themselves.
Frontmatter
Section titled “Frontmatter”---title: My Notedate: 2026-02-24tags: [work, ideas]---YAML frontmatter goes between the two --- lines at the very top of a file. See Tags and Frontmatter for full details.