majuna/docs/conf.py

64 lines
1.9 KiB
Python
Raw Permalink Normal View History

import builtins
2022-03-10 14:26:22 +00:00
import os
import sys
import yaml
2022-03-10 14:26:22 +00:00
sys.path.insert(0, os.path.abspath('..'))
language = 'en' # default language
locale_dirs = ['./locale/']
gettext_compact = False
templates_path = ['./_templates']
builtins.__sphinx_build__ = True
2022-03-10 14:26:22 +00:00
# Define languages and links in html_context
# this is used with templates in /_templates to extend the default theme,
# adding languages to the sidebar
with open('languages.yaml', 'r') as file:
config = yaml.safe_load(file)
languages = config.get('languages', [])
html_context = {
'languages': [[lang['code'], lang['name']] for lang in languages]
}
2022-03-10 14:26:22 +00:00
# -- Project information -----------------------------------------------------
2022-05-01 15:34:58 +01:00
project = 'Bypass Censorship Portal'
copyright = '2021-202r SR2 Communications Limited'
2022-03-10 14:26:22 +00:00
author = 'Bypass Censorship'
# -- General configuration ---------------------------------------------------
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
2022-04-08 17:48:07 +01:00
'sphinx.ext.autodoc',
'sphinxcontrib.mermaid',
'sphinxcontrib.openapi'
2022-03-10 14:26:22 +00:00
]
# 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 -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'furo'
2022-03-10 14:26:22 +00:00
# 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 = ['_static']