Was this page helpful?
Caution
You're viewing documentation for a previous version of ScyllaDB Sphinx Theme. Switch to the latest stable version.
Template options¶
The following options can be defined in the file conf.py
per project, using html_theme_options
setting.
Version dropdown options¶
Configuration options for version dropdown.
Option |
Type |
Default Value |
Description |
---|---|---|---|
|
string |
branch- |
Part of the branch name to skip from the multiversion dropdown. |
|
string |
master |
Name of the default branch where changes are integrated. Used to display the “You are not reading the most current version of the documentation” warning. |
|
list of strings |
[] |
List of tags and branches names to hide from the multiversion dropdown. |
|
string |
-scylla |
Part of the tag name to skip from the multiversion dropdown. |
Example:
html_theme_options = {
'branch_substring_removed': 'branch-',
'default_branch': 'master',
'hide_version_dropdown': ['master'],
'tag_substring_removed': '-scylla',
}
Version warning options¶
Configuration options for version warning.
Option |
Type |
Default Value |
Description |
---|---|---|---|
|
list of strings |
[] |
List of versions (branches or tags) that are not released yet. |
|
list of strings |
[] |
List of deprecated versions (branches or tags). |
Example:
html_theme_options = {
'versions_unstable': ['master'],
'versions_deprecated': [],
}
SEO options¶
Configuration options for Search Engine Optimization.
Option |
Type |
Default Value |
Description |
---|---|---|---|
|
string |
Scylla is an Apache Cassandra-compatible NoSQL data store that can handle 1 million transactions per second on a single server. |
Short summary describing the site. |
Example:
html_theme_options = {
'site_description': 'Documentation toolchain for Scylla projects.',
}