-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
132 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
import sys | ||
|
||
sys.path.append('./') | ||
from custom_conf import * | ||
|
||
# Configuration file for the Sphinx documentation builder. | ||
# You should not do any modifications to this file. Put your custom | ||
# configuration into the custom_conf.py file. | ||
# If you need to change this file, contribute the changes upstream. | ||
# | ||
# For the full list of built-in configuration values, see the documentation: | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
############################################################ | ||
### Extensions | ||
############################################################ | ||
|
||
extensions = [ | ||
'sphinx_design', | ||
'sphinx_tabs.tabs', | ||
'sphinx_reredirects', | ||
'canonical.youtube-links', | ||
'canonical.related-links', | ||
'canonical.custom-rst-roles', | ||
'canonical.terminal-output', | ||
'sphinx_copybutton', | ||
'sphinxext.opengraph', | ||
'myst_parser', | ||
'sphinxcontrib.jquery', | ||
'notfound.extension' | ||
] | ||
extensions.extend(custom_extensions) | ||
|
||
### Configuration for extensions | ||
|
||
# Additional MyST syntax | ||
myst_enable_extensions = [ | ||
'substitution', | ||
'deflist', | ||
'linkify' | ||
] | ||
|
||
# Used for related links | ||
if not 'discourse_prefix' in html_context and 'discourse' in html_context: | ||
html_context['discourse_prefix'] = html_context['discourse'] + '/t/' | ||
|
||
# The default for notfound_urls_prefix usually works, but not for | ||
# documentation on documentation.ubuntu.com | ||
if slug: | ||
notfound_urls_prefix = '/' + slug + '/en/latest/' | ||
|
||
notfound_context = { | ||
'title': 'Page not found', | ||
'body': '<h1>Page not found</h1>\n\n<p>Sorry, but the documentation page that you are looking for was not found.</p>\n<p>Documentation changes over time, and pages are moved around. We try to redirect you to the updated content where possible, but unfortunately, that didn\'t work this time (maybe because the content you were looking for does not exist in this version of the documentation).</p>\n<p>You can try to use the navigation to locate the content you\'re looking for, or search for a similar page.</p>\n', | ||
} | ||
|
||
# Default image for OGP (to prevent font errors, see | ||
# https://github.com/canonical/sphinx-docs-starter-pack/pull/54 ) | ||
if not 'ogp_image' in locals(): | ||
ogp_image = 'https://assets.ubuntu.com/v1/253da317-image-document-ubuntudocs.svg' | ||
|
||
############################################################ | ||
### General configuration | ||
############################################################ | ||
|
||
exclude_patterns = [ | ||
'_build', | ||
'Thumbs.db', | ||
'.DS_Store', | ||
'.sphinx', | ||
] | ||
exclude_patterns.extend(custom_excludes) | ||
|
||
rst_epilog = ''' | ||
.. include:: /reuse/links.txt | ||
''' | ||
if 'custom_rst_epilog' in locals(): | ||
rst_epilog = custom_rst_epilog | ||
|
||
source_suffix = { | ||
'.rst': 'restructuredtext', | ||
'.md': 'markdown', | ||
} | ||
|
||
if not 'conf_py_path' in html_context and 'github_folder' in html_context: | ||
html_context['conf_py_path'] = html_context['github_folder'] | ||
|
||
# For ignoring specific links | ||
linkcheck_anchors_ignore_for_url = [ | ||
r'https://github\.com/.*' | ||
] | ||
linkcheck_anchors_ignore_for_url.extend(custom_linkcheck_anchors_ignore_for_url) | ||
|
||
for tag in custom_tags: | ||
tags.add(tag) | ||
|
||
############################################################ | ||
### Styling | ||
############################################################ | ||
|
||
# Find the current builder | ||
builder = 'dirhtml' | ||
if '-b' in sys.argv: | ||
builder = sys.argv[sys.argv.index('-b')+1] | ||
|
||
# Setting templates_path for epub makes the build fail | ||
if builder == 'dirhtml' or builder == 'html': | ||
templates_path = ['.sphinx/_templates'] | ||
|
||
# Theme configuration | ||
html_theme = 'furo' | ||
html_last_updated_fmt = '' | ||
html_permalinks_icon = '¶' | ||
|
||
############################################################ | ||
### Additional files | ||
############################################################ | ||
|
||
html_static_path = ['.sphinx/_static'] | ||
|
||
html_css_files = [ | ||
'custom.css', | ||
'header.css', | ||
'github_issue_links.css', | ||
'furo_colors.css' | ||
] | ||
html_css_files.extend(custom_html_css_files) | ||
|
||
html_js_files = ['header-nav.js'] | ||
if 'github_issues' in html_context and html_context['github_issues'] and not disable_feedback_button: | ||
html_js_files.append('github_issue_links.js') | ||
html_js_files.extend(custom_html_js_files) |