SEO
Search engine optimization, sitemaps, and AI-friendly exports.
Blode.md automatically generates the files search engines and AI crawlers need to discover and index your documentation. You get sensible defaults out of the box, with options to customize behavior per page.
Every deployed site includes these files at their standard paths:
The llms.txt and llms-full.txt files follow the emerging llms.txt
standard for making documentation accessible to large
language models.
Control how search engines index your site with the seo.indexing option in docs.json:
{
"seo": {
"indexing": "all"
}
}| Value | Behavior |
|---|---|
"all" | All pages are indexed. Page-level noindex frontmatter is ignored. |
"default" | Pages with noindex: true in frontmatter are excluded from indexing. |
To exclude a specific page from search engine indexing, add noindex: true to its frontmatter:
---
title: Internal notes
noindex: true
---
This page will not appear in search engine results.Enable last-modified metadata with the metadata.timestamp option. This adds <meta> tags and updates your sitemap entries with accurate dates:
{
"metadata": {
"timestamp": true
}
}Timestamps are derived from your deployment history. Each page's last-modified date reflects the most recent deploy that changed its content.