Tiramisu Docs
The docs framework you'll love

A delightful language
for documentation.

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.

Easy as cake.

No MDX Hell.

Other tools make you fight your markup. Tiramisu stays out of your way.

component.mdx 18 lines
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>
component.tiramisu 7 lines
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 }
}
No imports — built-ins just work No JSX — no angle brackets No config — convention over configuration

Build your docs.

Get started with Tiramisu Docs in minutes.