A Sphinx extension to manage versioned documentation
Project description
sphinx_versioning
A Sphinx extension to manage versioned documentation.
Overview
sphinx-versioning is a Sphinx extension that manages versioned documentation, allowing users to maintain multiple versions of their documentation with ease. This plugin makes it simple to create, view, and navigate between different versions, providing an enhanced user experience.
Features
-
Version Creation: Easily create new versions of your documentation using the command-line interface.
-
Version Deletion: Manage your existing versions, including the ability to delete obsolete ones.
-
Version Navigation: Conveniently navigate between different versions through a drop-down menu.
-
Virtual Environment Support: Virtual Environment Support: Optionally use a virtual environment when building a new version, ensuring that documentation is built with a consistent set of dependencies and avoid.
Installation
pip install sphinx-versioning
Usage
Configuration in Sphinx
- In your Sphinx project's
conf.pyfile, add 'sphinx_versioning' to the extensions list:
extensions = [
...
'sphinx_versioning',
...
]
- Update your
conf.pyfile to include thesphinx_versioning.htmltemplate in thehtml_sidebarsconfiguration:
html_sidebars = {
'**': [
# ... other sidebars ...
# Suggest putting the extension above the search bar for better UX.
'sidebar/sphinx_versioning.html',
]
}
- If you haven't set it already, set
html_static_pathas follows:
html_static_path = ['_static']
Command Line Interface
The sphinx-version command-line tool provides functionality to manage versions:
Create a New Version based on the current source files:
sphinx-version VERSION_NAME
Where VERSION_NAME is a user-defined name for the documentation version (e.g., 'v1.0').
Create a New Version using a Virtual Environment:
To create a new version using a virtual environment and install dependencies from specific requirements files:
sphinx-version VERSION_NAME --venv --requirements req1.txt,req2.txt
Note: The
--requirementsflag expects the requirements file names. These files should be located in the same directory as the Sphinx documentation. The--requirementsflag should always be used with the--venvflag.
Why use a virtual environment?: Using a virtual environment ensures that each version of your documentation is built with a consistent set of dependencies. This can help avoid unexpected changes or issues that might arise if Sphinx or its extensions/themes update over time.
Delete an Existing Version:
sphinx-version VERSION_NAME -d
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sphinx-versioning-0.1.5.tar.gz.
File metadata
- Download URL: sphinx-versioning-0.1.5.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40f3cd0f282cd0ad08f96650ef0caf228c4a001c72b59a0b0eca95024a3d7bc8
|
|
| MD5 |
3fdc83c55941a5a5a2a7f22d8857269b
|
|
| BLAKE2b-256 |
c6483820aba4dd919ffbbeef9ff81a987b3826d75031282e2f730901138cc583
|
File details
Details for the file sphinx_versioning-0.1.5-py3-none-any.whl.
File metadata
- Download URL: sphinx_versioning-0.1.5-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40cf15d00ab41ae8b38340d4835b326170e3e728143d9fae6f9af263965e22be
|
|
| MD5 |
2d6c727696bb8004f2743ff43988a267
|
|
| BLAKE2b-256 |
479961f321f7e1dc46ecadc00e83a4f8e706957d7a3484556eac781bfd85c7ac
|