✺Note.space
/Docs
Sign inStart writing
  • Get started

    • Welcome
    • Quickstart
  • Writing

    • The editor
    • Markdown syntax
  • Features

    • AI assistant
    • Sharing notes
  • Account

    • Billing
PricingDownloadPrivacyTerms

© 2026 Note.space

✺Note.space
/Docs
Sign inStart writing
  • Get started

    • Welcome
    • Quickstart
  • Writing

    • The editor
    • Markdown syntax
  • Features

    • AI assistant
    • Sharing notes
  • Account

    • Billing

Writing

Markdown syntax

Every block, callout, and inline mark Note.space supports.

Note.space supports a superset of GitHub-flavoured markdown, with a handful of additions for math, diagrams, and editorial polish.

Headings

md
# Heading 1
## Heading 2
### Heading 3

Six levels are supported. Heading 1 is reserved for the note title — we auto-generate it from the first line if you don't add one.

Inline marks

  • Bold with **text**
  • Italic with *text*
  • Strikethrough with ~~text~~
  • Inline code with backticks
  • Highlight with ==text==
  • H2O subscript with ~2~, X2 superscript with ^2^

Lists

md
- Bulleted
- Lists

1. Numbered
2. Lists

- [ ] Task lists
- [x] With checkboxes

Tables

md
| Column | Column |
| --- | --- |
| Cell | Cell |

Code blocks

Fence with three backticks. Add a language tag for syntax-aware blocks:

md
```ts
export function hello() {
  return "world";
}
```

Math

Inline math with single dollars: $E = mc^2$ renders as E=mc2E = mc^2E=mc2.

Block math with double dollars:

md
$$
\int_{0}^{\infty} e^{-x^2} \, dx = \frac{\sqrt{\pi}}{2}
$$

Diagrams

A fenced block tagged mermaid renders as a Mermaid diagram:

md
```mermaid
graph LR
  Note --> Idea
  Idea --> Outline
  Outline --> Draft
```

Callouts

GitHub-style alerts work via blockquote prefixes:

md
> [!NOTE]
> Useful background.

> [!TIP]
> A non-obvious technique.

> [!WARNING]
> A footgun to avoid.

> [!CAUTION]
> Something destructive.

Footnotes

md
Claim with a footnote.[^1]

[^1]: The footnote body, which can include **markdown**.

Keyboard keys

<kbd>⌘</kbd>+<kbd>K</kbd> renders as ⌘+K. Useful for documenting your own workflows.

Collapsible details

html
<details>
  <summary>Click to expand</summary>

  Hidden content lives here.
</details>

← Previous

The editor

Next →

AI assistant

On this page

  • Headings
  • Inline marks
  • Lists
  • Tables
  • Code blocks
  • Math
  • Diagrams
  • Callouts
  • Footnotes
  • Keyboard keys
  • Collapsible details
PricingDownloadPrivacyTerms

© 2026 Note.space