All docs
On this page

Reading content back

Kobun writes plain Markdown, so every framework reads it with its own loader.

There is no Kobun SDK

TODO — make the central point explicitly: because Kobun commits ordinary Markdown to your repository, reading it back is your framework’s job, not Kobun’s. Nothing needs installing to consume the content.

By framework

TODO — verify against src/snippets/astro.txt.

import { getCollection } from 'astro:content'

const posts = await getCollection('blog')

Keeping schemas in sync

TODO — the config file describes the content model and the consuming framework usually describes it again in its own schema. Say whether anything generates one from the other, or whether keeping them aligned is manual.