Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sage
Path: blob/develop/src/doc/en/website/conf.py
4111 views
1
# nodoctest
2
# Numerical Sage documentation build configuration file, created by
3
# sphinx-quickstart on Sat Dec 6 11:08:04 2008.
4
#
5
# This file is execfile()d with the current directory set to its containing dir.
6
#
7
# The contents of this file are pickled, so don't put values in the namespace
8
# that aren't pickleable (module imports are okay, they're removed automatically).
9
#
10
# All configuration values have a default; values that are commented out
11
# serve to show the default.
12
13
from sage_docbuild.conf import release
14
from sage_docbuild.conf import * # NOQA
15
16
# Add any paths that contain custom static files (such as style sheets),
17
# relative to this directory to html_static_path. They are copied after the
18
# builtin static files, so a file named "default.css" will overwrite the
19
# builtin "default.css". html_common_static_path imported from sage_docbuild.conf
20
# contains common paths.
21
html_static_path = [] + html_common_static_path
22
23
# General information about the project.
24
project = "Documentation"
25
26
# The name for this set of Sphinx documents. Do not include release info.
27
html_title = project
28
html_short_title = project
29
30
# Output file base name for HTML help builder.
31
htmlhelp_basename = 'sage_documentation'
32
33
# Grouping the document tree into LaTeX files. List of tuples
34
# (source start file, target name, title, author, document class [howto/manual]).
35
latex_documents = [
36
('index', 'sage_documentation.tex', 'Documentation',
37
'The Sage Development Team', 'manual'),
38
]
39
40
# Note that this effectively replaces the index.html generated from index.rst.
41
# Hence some template context variables such as 'title' are not provided to
42
# this "additional" index.html.
43
html_additional_pages = {
44
'index': 'index_furo.html' if html_theme == 'furo' else 'index.html',
45
}
46
47