# LLMs.txt & Markdown docs

LLM-friendly documentation endpoints for this showcase. Static Markdown mirrors structured guides under `/docs/*.md`; component bundles live under `/docs/components`.

## Overview

These endpoints follow common patterns (similar to [llms.txt](https://llmstxt.org/)) so tools and assistants can fetch plain text instead of scraping HTML.

## Discovery files

- /llms.txt - short index of guides, the LLMs overview Markdown URL, and a pointer to the full component list.
- /llms-full.txt - complete list of /docs/*.md guide URLs plus every /docs/components/{slug}.md component file.

## Guide pages as Markdown

Append **.md** to the slug under /docs/ to retrieve a Markdown rendition of each guide-style page:

- /docs/getting-started.md
- /docs/installation.md
- /docs/i18n.md
- /docs/roadmap.md
- /docs/llms.md - this overview in Markdown form

Files are emitted into public/docs/ during npm run docs:build and copied to the deployed site root.

## Component Markdown

Each showcase publishes an AI-oriented Markdown bundle (title, intro, imports, snippet sources) built from showcase metadata:

- /docs/components/{component}.md - e.g. /docs/components/button.md, /docs/components/data-grid.md
- /docs/components/snippets/{slug}/... - raw TypeScript example files copied alongside the Markdown

## Related

- Getting Started: Fast path through install, styles and first composition. (/docs/getting-started)
- Installation: Package, styles, icons and Angular configuration. (/docs/installation)
