---
title: Doc Site Features
description: Built-in reader features every Syntext doc site gets automatically — feedback, page navigation, AI actions, and machine-readable exports.
icon: sparkles
---

# Doc Site Features

Every published Syntext site includes a set of reader-facing features out of the box. Nothing to install or configure — they're part of the build pipeline.

## Page Feedback

Each page ends with a **"Was this page helpful?"** widget. Reader votes are collected per page and surface in your [analytics dashboard](/platform/analytics) and the [Feedback API](/api-reference/overview), helping you find pages that need work.

## Previous / Next Navigation

Pages automatically link to their neighbors in the sidebar order, so readers can move through a section without returning to the navigation. The links follow your configured navigation groups.

## Page Actions

Every page has an actions menu next to the title:

- **Copy page** — copies the page as Markdown to the clipboard
- **View as Markdown** — opens the raw `.md` export of the page
- **Open in ChatGPT** — starts a ChatGPT conversation seeded with the page
- **Open in Claude** — starts a Claude conversation seeded with the page

These are powered by per-page Markdown exports: every `page.html` has a matching `page.md` published alongside it.

## AI-Readable Exports

Syntext sites publish machine-readable indexes for LLM tools:

| File | Contents |
|------|----------|
| `/llms.txt` | Index of all pages with titles and links |
| `/llms-full.txt` | Full text of all pages in one file |
| `/{page}.md` | Raw Markdown for any individual page |

Point AI tools, crawlers, or the [MCP server](/guides/mcp-integration) at these for accurate, up-to-date answers about your product.

## Ask Page

Every site serves a full-page AI chat at `/ask`, backed by the same RAG assistant as the [embedded widget](/platform/ai-assistant). Link to it directly from your app or support flows.

## Search

Full-text search is built in — press <kbd>/</kbd> or click the search box. Self-hosted builds include a static `_assets/search-index.json` so search works without the Syntext API (see [stx build](/cli/build)).

## SEO Files

Builds generate `sitemap.xml` and `robots.txt` automatically from your navigation, plus per-page meta tags and Open Graph data from frontmatter.

## Related

- [Analytics](/platform/analytics)
- [AI Assistant](/platform/ai-assistant)
- [Theming](/guides/theming)
