Automatic Sitemap Generation

Learn how AkiraDocs automatically generates and manages your documentation sitemap.

Overview

AkiraDocs automatically generates a sitemap.xml file during the build process, ensuring search engines can efficiently crawl your documentation.

Generated Sitemap Structure

Example Output

1<?xml version="1.0" encoding="UTF-8"?>
2<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3  <url>
4    <loc>https://yourdocs.com/</loc>
5    <lastmod>2024-11-26</lastmod>
6    <changefreq>weekly</changefreq>
7    <priority>1.0</priority>
8  </url>
9  <url>
10    <loc>https://yourdocs.com/docs/getting-started</loc>
11    <lastmod>2024-11-26</lastmod>
12    <changefreq>weekly</changefreq>
13    <priority>0.8</priority>
14  </url>
15</urlset>