# Docs for LLMs

> Give an AI assistant the Flexiboards docs as plain Markdown.

Source: https://www.flexiboards.dev/docs/llms

Framework: Svelte

These docs follow the [llms.txt convention](https://llmstxt.org), so an assistant can read them without scraping HTML. Every page on this site also has a Markdown twin.

## Files

| File                             | What it holds                                                                                                                   |
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
| [/llms.txt](https://www.flexiboards.dev/llms.txt)           | An index of every docs page with a one-line description, plus the examples and the npm packages. Point an assistant here first. |
| [/llms-full.txt](https://www.flexiboards.dev/llms-full.txt) | The full text of every docs page in one file, for tools that want everything in context at once.                                |
| `/docs/<page>.md`                | Any docs page as Markdown, at the page's own URL with `.md` appended. [/docs/flow-grids.md](https://www.flexiboards.dev/docs/flow-grids.md), for example.  |

## Choose a framework

Markdown accepts a `framework` query parameter. It selects the examples, framework-specific prose, prop names, and API tables. Shared explanations appear once.

- [One page](https://www.flexiboards.dev/docs/flow-grids.md?framework=svelte): `/docs/flow-grids.md?framework=svelte`
- [Full docs](https://www.flexiboards.dev/llms-full.txt?framework=svelte): `/llms-full.txt?framework=svelte`

Omit the query or use `?framework=all` for both frameworks, useful when comparing adapters. These URLs are independent of cookies, so sharing a link always shares the same version. Framework-only migration pages are omitted from the other framework's full docs and return 404 when explicitly requested for it.

Each HTML page advertises the selected version with `<link rel="alternate" type="text/markdown">`, so tools can discover the appropriate plain-text URL.

## Copy a page

Every docs page has a **Copy as Markdown** action under its title, next to the edit link. It copies only the currently selected framework's documentation. **Open Markdown** opens that same version in a new tab. Both actions follow the framework picker automatically.
