sphinx-sitemap icon indicating copy to clipboard operation
sphinx-sitemap copied to clipboard

Sphinx extension to generate a multi-lingual, multi-version sitemap for HTML builds

Results 19 sphinx-sitemap issues
Sort by recently updated
recently updated
newest added

With no language configured, a mono-lingual site sitemap suddenly gains /en/ in the sitemap after updating to sphinx 5, breaking all paths

to match the default value set in code https://github.com/jdillard/sphinx-sitemap/blob/3d8c6aac3e510f9228c46ac8c855025229ebb123/sphinx_sitemap/__init__.py#L27

I tried running this against the Ansible documentation, which includes multiple subdirectories, and I only get results from the parent directory. # Generated sitemap https://docs.ansible.com/latest/404.html https://docs.ansible.com/latest/genindex.html https://docs.ansible.com/latest/py-modindex.html https://docs.ansible.com/latest/search.html https://docs.ansible.com/latest/opensearch.html #...

bug

Hi, According to Google documentation, each language variation should be put with `` **including the default language**. **Current Sitemap:** ``` https://super_doc.com/fr/index.html ``` **Expected Sitemap:** ``` https://super_doc.com/fr/index.html ``` https://developers.google.com/search/docs/advanced/crawling/localized-versions#sitemap

Hello! Looking at the `sitemap_url_scheme` customization for multi-language sites, and I'm trying to figure out how to pass a specific configuration to enable the following behavior: in `conf.py`; ``` language...

There currently is no `` tag for each URL in the **sitemap.xml**. To implement this will likely require a different extension. example: https://bitbucket.org/dhellmann/pymotw-3/src/17b6ea3b657b93ad45b6ccd5c295e767f4f4be71/source/conf.py?at=master&fileviewer=file-view-default#conf.py-449 ```python def html_page_context(app, pagename, templatename, context, doctree):...

enhancement

Set [\](https://www.sitemaps.org/protocol.html#prioritydef) as: - `1` for the pages of the latest or stable version. - for each following version, decrease the priority of `0.1` at each version - `0.1` for...

enhancement

**Issue** The builder currently doesn't access to the [saved environment](http://www.sphinx-doc.org/en/master/glossary.html#term-environment), so it can only see pages that are new or have changed since the last build, possibly leading to an...

bug

Whether through a config value array, `sitemap_exclude`, and/or metadata on the page, `:nositemap:`, to be excluded.

enhancement

Set [\](https://www.sitemaps.org/protocol.html#changefreqdef) as : - `daily` for the pages of the latest version - `weekly` for the pages of the last tag version - `never` for the pages of other...

enhancement