-
Notifications
You must be signed in to change notification settings - Fork 145
/
conf.py
66 lines (53 loc) · 2.34 KB
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
from datetime import date
import subprocess
# -- Build setup -------------------------------------------------------------
def setup(app):
# Fetch documentation images
subprocess.check_call("cmake -P documentation/docs/ExternalData/FetchExternalData.cmake", stderr=subprocess.STDOUT, shell=True)
# -- Project information -----------------------------------------------------
project = 'RTK'
copyright = f'{date.today().year}, Simon Rit'
author = 'RTK Consortium'
# The full version, including alpha/beta/rc tags
# release = '2.6.0'
# -- General configuration ---------------------------------------------------
extensions = [
'myst_parser',
'sphinx_copybutton',
]
myst_enable_extensions = [
"attrs_inline", # inline image attributes
"colon_fence",
"dollarmath", # Support syntax for inline and block math using `$...$` and `$$...$$`
# (see https://myst-parser.readthedocs.io/en/latest/syntax/optional.html#dollar-delimited-math)
"fieldlist",
"linkify", # convert bare links to hyperlinks
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
# -- Options for HTML output -------------------------------------------------
html_theme = 'furo'
# Furo options
html_theme_options = {
"top_of_page_button": "edit",
"source_repository": "https://github.com/RTKConsortium/RTK/",
"source_branch": "master",
"source_directory": "",
}
# Add any paths that contain custom static files (such as style sheets or icons)
# 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 = []
html_logo = "https://www.openrtk.org/opensourcelogos/rtk75.png"
html_title = f"{project}'s documentation"
# -- Master document -------------------------------------------------
master_doc = 'index'