Congratulations! You've just created your first workspace — this is now your team's private, collaborative, and AI-powered single source of truth.
# What you can do immediately
- Write in clean, native Markdown (just like this document)
- Invite teammates in one click
- Organize with folders, links, and drag-and-drop
- Let our AI suggest where new notes belong and help you write faster
- Search semantically across everything
- Publish any page to the world — for free — with Haxiom Pages
# Tutorial: Publish your first public page in 30 seconds
You can refer here on how to publish your documents
# Quick Markdown cheat-sheet
We support full CommonMark + many useful extensions (tables, task lists, callouts, footnotes, etc.). You can take a look at the reference below
# Pricing
# Pricing — simple, generous, no surprises
Monthly plans
| Plan | Price per seat | Real-time Seats | Storage | AI Credits / seat | Key Limits & Extras |
|---|---|---|---|---|---|
| Free | $0 forever | Up to 3 | 1 GB | 10 | Max 30 documents |
| Premium | $5 / seat / mo | Unlimited | 10 GB | 20 | Unlimited documents |
| Pro | $12 / seat / mo | Unlimited | 10 GB | 50 | AI auto-reconcile, advanced sync, PRO badge |
Yearly plans (save ~17-20%)
| Plan | Price per seat | Everything else |
|---|---|---|
| Premium Yearly | $4 / seat / mo ($48 / year) | Same as Premium |
| Pro Yearly | $10 / seat / mo ($120 / year) | Same as Pro |
| Enterprise | Custom | Unlimited everything, SSO, dedicated support, audit logs, on-prem option |
All plans include:
- Real-time collaborative Markdown editor
- GitHub sync
- Instant public/unlisted pages at page.haxiom.io
- Full export anytime
- No lock-in, ever
# Ready?
Start writing, invite your team, and build your single source of truth.
Let's go! ✨
— The Haxiom Team
# Markdown syntax guide
You are using haxiom.io.
# Blockquotes
Note
This is an informational blockquote
Tip
This is a tip blockquote.
Important
This is an important blockquote.
Warning
This is a warning blockquote.
Caution
This is a caution blockquote.
Markdown is a lightweight markup language with plain-text-formatting syntax, created in 2004 by John Gruber with Aaron Swartz.
Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor.
# Blocks of code
Code
let message = 'Hello world';
alert(message);
Code
#include <iostream>
#include <vector>
Â
auto main() -> int {
    std::vector<int> v = {8, 4, 5, 9};
Â
    v.emplace_back(6);
    v.emplace_back(9);
Â
    v[2] = -1;
Â
    for (int n : v)
        std::cout << n << ' ';
    std::cout << '\n';
}
# Headers
# This is a Heading h1
# This is a Heading h2
# This is a Heading h6
# Emphasis
This text will be italic
This will also be italic
This text will be bold
This will also be bold
You can combine them
# Lists
# Unordered
- Item 1
- Item 2
- Item 2a
- Item 2b
- Item 3a
- Item 3b
# Ordered
- Item 1
- Item 2
- Item 3
- Item 3a
- Item 3b
# Tasklist
- Wake up
- Drink water
- Make lunch
# Images

# Links
You are using haxiom.io.
# Tables
| Left columns | Right columns |
|---|---|
| left foo | right foo |
| left bar | right bar |
| left baz | right baz |
# Inline code
This web site is using solid-markdown-wasm.
# Math
We use typst instead of LaTeX for math
# Maxwell's Equations in Differential Form
# Keyboard Shortcuts
- Ctrl+b: Toggle bold your selected text
- Ctrl+i: Toggle italics your selected text
- Ctrl+v: Paste images