v1.0
Introduction / Page 01·05

Docs for LLMs

Give an AI assistant the Flexiboards docs as plain Markdown.

These docs follow the llms.txt convention, so an assistant can read them without scraping HTML. Every page on this site also has a Markdown twin.

Files

FileWhat it holds
/llms.txtAn index of every docs page with a one-line description, plus the examples and the npm packages. Point an assistant here first.
/llms-full.txtThe full text of every docs page in one file, for tools that want everything in context at once.
/docs/<page>.mdAny docs page as Markdown, at the page’s own URL with .md appended. /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: /docs/flow-grids.md?framework=svelte
  • Full docs: /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.