-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.py
More file actions
104 lines (86 loc) · 3.2 KB
/
conf.py
File metadata and controls
104 lines (86 loc) · 3.2 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Copyright (c) Ansible Project
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
# Created with antsibull-docs 2.5.0.post0
# This file only contains a selection of the most common options. For a full list see the
# documentation:
# http://www.sphinx-doc.org/en/master/config
project = "arillso"
copyright = "arillso contributors"
title = "arillso Guide Documentation"
html_short_title = "arillso Documentation"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx_antsibull_ext",
"sphinxcontrib.mermaid",
"sphinx_sitemap",
]
# Mermaid configuration - use default light theme
mermaid_version = "latest"
mermaid_params = ["--theme", "default", "--backgroundColor", "white"]
mermaid_init_js = "mermaid.initialize({startOnLoad:true,theme:'default'});"
pygments_style = "ansible"
highlight_language = "YAML+Jinja"
templates_path = ["_templates"]
html_theme = "sphinx_ansible_theme"
html_show_sphinx = False
display_version = False
html_use_smartypants = True
html_use_modindex = False
html_use_index = False
html_copy_source = False
# Static files (CSS, JavaScript, Images)
html_static_path = ["_static"]
html_css_files = ["custom.css"]
html_js_files = ["custom.js"]
# Logo and Favicon
html_logo = "_static/logo.svg"
html_favicon = "_static/favicon.ico"
# See https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#confval-intersphinx_mapping for the syntax
intersphinx_mapping = {
"python": ("https://docs.python.org/2/", None),
"python3": ("https://docs.python.org/3/", None),
"jinja2": ("https://jinja.palletsprojects.com/en/stable/", None),
"ansible_devel": ("https://docs.ansible.com/ansible/devel/", None),
# If you want references to resolve to a released Ansible version (say, `5`), uncomment and replace X by this version:
# 'ansibleX': ('https://docs.ansible.com/ansible/X/', None),
}
default_role = "any"
nitpicky = True
# Sitemap configuration
html_baseurl = "https://guide.arillso.io/"
sitemap_url_scheme = "{link}"
html_theme_options = {
# URLs and canonical settings
"canonical_url": "https://guide.arillso.io/",
"documentation_home_url": "/",
# Topbar navigation links
"topbar_links": {
"GitHub": "https://github.com/arillso",
"Discussions": "https://github.com/orgs/arillso/discussions",
"Collections": "https://galaxy.ansible.com/ui/namespaces/arillso/",
"Docker Hub": "https://hub.docker.com/r/arillso/ansible",
"GitHub Actions": "https://github.com/marketplace/actions/play-ansible-playbook",
},
# Branding and logo
"logo_only": True,
"display_version": False,
# Navigation behavior
"collapse_navigation": False,
"sticky_navigation": True,
"navigation_depth": 4,
"includehidden": True,
"titles_only": False,
# Page navigation
"prev_next_buttons_location": "both",
# Styling
"style_external_links": True,
"style_nav_header_background": "#2c3e50",
# Tracking and analytics (disabled)
"analytics_id": "",
"analytics_anonymize_ip": False,
# Additional features
"vcs_pageview_mode": "",
"show_rtd_ethical_ads": False,
}