The documenteer.conf.guide configuration preset#
This module, documenteer.conf.guide
contains Sphinx configuration presets for Rubin observatory user guides.
See how-to for using this configuration in your project.
"""Sphinx configuration for Rubin Observatory User Guides.
To use this configuration in a Sphinx technote project, write a conf.py
containing::
from documenteer.conf.guide import *
"""
from typing import Any, Dict, List, Tuple, Union
from documenteer.conf import (
DocumenteerConfig,
get_asset_path,
get_template_dir,
)
# This configuration is broken down into these sections:
#
# #EXT
# Sphinx extensions
# #SPHINX
# Core Sphinx configurations
# #INTER
# Intersphinx configuration
# #LINKCHECK
# Linkcheck builder configuration
# #HTML
# HTML builder and theme configuration
# #API
# API reference configuration
# #MYST
# MyST markdown configurations
# #MERMIAID
# Mermaid diagram support
# #OPENGRAPH
# OpenGraph metadata support
# Ordered as they are declared in this module
__all__ = [
# EXT
"extensions",
# SPHINX
"project",
"author",
"copyright",
"version",
"release",
"source_suffix",
"root_doc",
"language",
"exclude_patterns",
"default_role",
"nitpicky",
"nitpick_ignore",
"nitpick_ignore_regex",
"templates_path",
"rst_epilog",
# INTER
"intersphinx_mapping",
"intersphinx_timeout",
"intersphinx_cache_limit",
# LINKCHECK
"linkcheck_retries",
"linkcheck_ignore",
"linkcheck_timeout",
# HTML
"html_theme",
"html_context",
"html_theme_options",
"html_sidebars",
"html_title",
"html_short_title",
"html_baseurl",
"html_static_path",
"html_css_files",
"html_show_sourcelink",
# API
"automodapi_toctreedirnm",
"always_document_param_types",
"typehints_defaults",
"napoleon_google_docstring",
"napoleon_numpy_docstring",
"napoleon_include_init_with_doc",
"napoleon_include_private_with_doc",
"napoleon_include_special_with_doc",
"napoleon_use_admonition_for_examples",
"napoleon_use_admonition_for_notes",
"napoleon_use_admonition_for_references",
"napoleon_use_ivar",
"napoleon_use_param",
"napoleon_use_rtype",
"napoleon_preprocess_types",
"napoleon_type_aliases",
"napoleon_attr_annotations",
# MYST
"myst_enable_extensions",
# MERMAID
"mermaid_output_format",
"mermaid_version",
# OPENGRAPH
"ogp_site_url",
"ogp_site_name",
"ogp_use_first_image",
]
_conf = DocumenteerConfig.find_and_load()
# ============================================================================
# #EXT Sphinx extensions
# ============================================================================
extensions = [
"myst_parser",
"sphinx_copybutton",
"sphinx_design",
"sphinxcontrib.mermaid",
"sphinxext.opengraph",
"sphinx.ext.autodoc",
"sphinx.ext.doctest",
"sphinx.ext.intersphinx",
"sphinx.ext.todo",
"sphinx.ext.ifconfig",
"sphinx-prompt",
"sphinx.ext.napoleon",
"sphinx_autodoc_typehints",
"sphinx_automodapi.automodapi",
"sphinx_automodapi.smart_resolver",
"documenteer.sphinxext",
]
_conf.append_extensions(extensions)
# ============================================================================
# #SPHINX Core Sphinx configurations
# ============================================================================
project = _conf.project
author = "Rubin Observatory"
copyright = _conf.copyright
version = _conf.version
release = version
source_suffix = {
".rst": "restructuredtext",
".txt": "markdown",
".md": "markdown",
}
root_doc = "index"
language = "en"
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ["_build", "README.rst", "README.md"]
if _conf.rst_epilog_path:
exclude_patterns.append(str(_conf.rst_epilog_path))
# The reST default role cross-links Python (used for this markup: `text`)
default_role = "py:obj"
# Escalate warnings ot errors if True
nitpicky = _conf.nitpicky
# Warnings to ignore
nitpick_ignore: List[Tuple[str, str]] = []
_conf.append_nitpick_ignore(nitpick_ignore)
nitpick_ignore_regex: List[Tuple[str, str]] = []
_conf.append_nitpick_ignore_regex(nitpick_ignore_regex)
# A list of paths that contain extra templates (or templates that overwrite
# builtin/theme-specific templates).
templates_path = [get_template_dir("pydata")]
# Common reStructuredText substitutions and links
rst_epilog = _conf.rst_epilog
# ============================================================================
# #INTER Intersphinx configuration
# ============================================================================
# Example entry:
# "python": ("https://docs.python.org/3/", None),
intersphinx_mapping: Dict[str, Tuple[str, Union[str, None]]] = {}
_conf.extend_intersphinx_mapping(intersphinx_mapping)
intersphinx_timeout = 10.0 # seconds
intersphinx_cache_limit = 5 # days
# ============================================================================
# #LINKCHECK Linkcheck builder configuration
# ============================================================================
linkcheck_retries = 2
# Tucson IT infrastructure sometimes goes down or has TLS issues
linkcheck_ignore = [
r"^https://jira.lsstcorp.org/browse/",
r"^https://ls.st/",
]
_conf.append_linkcheck_ignore(linkcheck_ignore)
linkcheck_timeout = 15
# ============================================================================
# #HTML HTML builder and theme configuration
# ============================================================================
html_theme = "pydata_sphinx_theme"
# Context available to Jinja templates
html_context: Dict[str, Any] = {}
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
html_theme_options = {
"header_links_before_dropdown": _conf.header_links_before_dropdown,
"external_links": [{"name": "Rubin docs", "url": "https://www.lsst.io"}],
"icon_links": [],
"logo": {
"image_light": "rubin-titlebar-imagotype-light.svg",
"image_dark": "rubin-titlebar-imagotype-dark.svg",
"text": project,
},
"favicons": [
{
"rel": "icon",
"sizes": "32x32",
"href": "rubin-favicon-transparent-32px.png",
},
{"rel": "icon", "href": "rubin-favicon.svg"},
],
"pygment_light_style": "xcode",
"pygment_dark_style": "github-dark",
}
if _conf.github_url:
assert isinstance(html_theme_options["icon_links"], list)
html_theme_options["icon_links"].append(
{
"name": "GitHub",
"url": _conf.github_url,
"icon": "fab fa-github-square",
"type": "fontawesome",
}
)
# Configure the "Edit this page" link
_conf.set_edit_on_github(html_theme_options, html_context)
# Specifies templates to put in the primary (left) sidebars of
# specific pages (by their docname or pattern). An empty list results in the
# sidebar being dropped altogether.
html_sidebars: Dict[str, List[str]] = {"index": [], "changelog": []}
_conf.disable_primary_sidebars(html_sidebars)
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
html_title = project
# A shorter title for the navigation bar. Default is the same as html_title.
html_short_title = project
# The base URL of the root of the HTML documentation. This is used to set
# the canonical URL link relation
html_baseurl = _conf.base_url
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path: List[str] = [
get_asset_path("rubin-titlebar-imagotype-dark.svg"),
get_asset_path("rubin-titlebar-imagotype-light.svg"),
get_asset_path("rubin-favicon-transparent-32px.png"),
get_asset_path("rubin-favicon.svg"),
get_asset_path("rubin-pydata-theme.css"),
]
html_css_files = ["rubin-pydata-theme.css"]
# If true, links to the reST sources are added to the pages.
html_show_sourcelink = False
# ============================================================================
# #API API reference configurations
# ============================================================================
# Automodapi
# https://sphinx-automodapi.readthedocs.io/en/latest/automodapi.html
automodapi_toctreedirnm = _conf.automodapi_toctreedirm
# sphinx_autodoc_typehints
always_document_param_types = True
typehints_defaults = "comma"
# napoleon
napoleon_google_docstring = False # non-default
napoleon_numpy_docstring = True
napoleon_include_init_with_doc = False
napoleon_include_private_with_doc = False
napoleon_include_special_with_doc = True
napoleon_use_admonition_for_examples = False
napoleon_use_admonition_for_notes = False
napoleon_use_admonition_for_references = False
napoleon_use_ivar = False
napoleon_use_param = True
napoleon_use_rtype = True
napoleon_preprocess_types = False
napoleon_type_aliases = None
napoleon_attr_annotations = True
# ============================================================================
# #MYST MyST markdown configurations
# https://myst-parser.readthedocs.io/en/latest/syntax/optional.html
# ============================================================================
myst_enable_extensions = [
"amsmath",
"colon_fence",
"deflist",
"dollarmath",
"fieldlist",
"html_admonition",
"html_image",
"linkify",
"replacements",
"smartquotes",
"strikethrough",
"substitution",
"tasklist",
]
# ============================================================================
# #MERMIAID Mermaid diagram support
# https://github.com/mgaitan/sphinxcontrib-mermaid
# https://mermaid-js.github.io/mermaid/#/
# ============================================================================
# The raw format renders the diagram client-side, and doesn't require a
# Mermaid CLI installation
mermaid_output_format = "raw"
# Temporary workaround for not getting mermaid 10 successfully from unpkg
# https://github.com/mgaitan/sphinxcontrib-mermaid/issues/110
mermaid_version = "9.4.0"
# ============================================================================
# #OPENGRAPH OpenGraph diagram support
# https://github.com/wpilibsuite/sphinxext-opengraph
# https://ogp.me/
# ============================================================================
ogp_site_url = _conf.base_url
ogp_site_name = _conf.project
ogp_use_first_image = True