Write docs in Tiramisu markup, get a beautiful site powered by SvelteKit. No MDX, no config files, no friction.

Tiramisu Docs is a SvelteKit documentation framework built around the Tiramisu markup language. A clean syntax with no angle brackets, no closing tags, and no import hell. Just write — and get beautiful, fast documentation.
Other tools make you fight your markup. Tiramisu stays out of your way.
import { Callout } from '../components/Callout'
import { Tabs, Tab } from '../components/Tabs'
<Callout type="warning">
Don't forget to install the **peer
dependencies**.
</Callout>
<Tabs items={['npm', 'yarn']}>
<Tab value="npm">
```bash
npm install my-package
```
</Tab>
<Tab value="yarn">
```bash
yarn add my-package
```
</Tab>
</Tabs>callout { type = warning, Don't forget to install the peer dependencies. }
codetabs {
group = pkg,
codetab { label = npm, language = bash, npm install my-package },
codetab { label = yarn, language = bash, yarn add my-package }
}Get started with Tiramisu Docs in minutes.