# 👋 Welcome to Haxiom!
This is your new collaborative canvas, ready to be filled with your team's next big idea. Think of this as a living document, a shared space where you can brainstorm, plan, and create together in real-time.
To get you started, we've put together this little guide to show you what's possible. Feel free to edit anything you see here!
# 🚀 Project Kick-off: Operation "Conquer the World"
Let's imagine you're starting a new project. You can use Haxiom to keep everything organized.
Mission Statement: To build the most amazing thing the world has ever seen, and to have fun while doing it.
# Key Objectives (Q4 2025)
- Finalize the master plan.
- Assemble the dream team.
- Design a cool logo.
- Launch!
# Task List
Here’s how you can track tasks. Just click the checkbox to mark something as done.
- Create a new Haxiom document
- Brainstorm project ideas
- Invite team members to this document
- Assign tasks and deadlines
# Team Roles
Use tables to organize information clearly.
| Name | Role | Status |
|---|---|---|
| You | Project Lead | ✅ Ready |
| Invitee | Marketing Guru | ⏳ Pending |
| Invitee | Engineering Wizard | ⏳ Pending |
# ✨ Pro-Tips for Power Users
Show off your ideas with style. Haxiom supports all the good stuff from GitHub Flavored Markdown.
# Got Code?
Share code snippets with syntax highlighting.
Code
import { type Component, createSignal } from "solid-js";
import { MarkdownRenderer } from "solid-markdown-wasm";
const App: Component = () => {
const [markdown, setMarkdown] = createSignal<string>("# Hello, Markdown!");
const handleInput = (
event: InputEvent & { currentTarget: HTMLTextAreaElement }
) => {
setMarkdown(event.currentTarget.value);
};
return (
<div>
<h1>Markdown Editor</h1>
<textarea
rows={10}
cols={50}
value={markdown()}
onInput={handleInput}
placeholder="Enter your markdown here..."
/>
<h2>Preview:</h2>
<MarkdownRenderer markdown={markdown()} theme="base16-ocean-dark" />
</div>
);
};
export default App;
# Make it Pop
Use emphasis to draw attention to key points.
- This is bold text for importance.
- This is italic text for nuance.
- You can even
strikethroughold ideas. - Want to highlight something? ==Use markers==.
- Need to add a quick thought? ++This is inserted text++.
# Footnotes & Fun Stuff
Add extra context without cluttering your main points with footnotes[^1]. And yes, emojis are supported :tada:!
[^1]: Like this! Footnotes are great for citations or side comments.
# Ready to Start Creating?
This document is all yours now.
- Click the "Edit" button.
- Delete all this text.
- Start writing your own masterpiece.
To bring in your team, just share the link to this document. Happy collaborating!
