-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed edbe14f with MkDocs version: 1.6.1
- Loading branch information
0 parents
commit c80d5b4
Showing
354 changed files
with
518,193 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,66 @@ | ||
# Configuration file for the Sphinx documentation builder. | ||
|
||
# -- Project information | ||
|
||
project = "Northstar Modding" | ||
copyright = "2022, Northstar Developer Team" | ||
author = "Northstar Developer Team" | ||
|
||
# -- General configuration | ||
|
||
extensions = [ | ||
"sphinx.ext.duration", | ||
"sphinx.ext.doctest", | ||
"sphinx.ext.autodoc", | ||
"sphinx.ext.autosummary", | ||
"sphinx.ext.intersphinx", | ||
"sphinx_design", | ||
"sphinxcontrib.youtube", | ||
"sphinx_copybutton", | ||
"sphinx_rsquirrel", | ||
"sphinxext.opengraph", | ||
] | ||
|
||
intersphinx_mapping = { | ||
"python": ("https://docs.python.org/3/", None), | ||
"sphinx": ("https://www.sphinx-doc.org/en/master/", None), | ||
} | ||
intersphinx_disabled_domains = ["std"] | ||
|
||
templates_path = ["_templates"] | ||
|
||
exclude_patterns = ["_build"] | ||
|
||
# -- Options for HTML output | ||
|
||
html_theme = "furo" | ||
|
||
html_static_path = ["_static"] | ||
html_css_files = [ | ||
"styles/main.css", | ||
] | ||
|
||
|
||
html_theme_options = { | ||
"light_css_variables": { | ||
"color-brand-primary": "#7C4DFF", | ||
"color-brand-content": "#7C4DFF", | ||
}, | ||
"dark_css_variables": { | ||
"color-background-primary": "#14141E", | ||
"color-background-secondary": "#20202F", | ||
"color-background-hover": "#10101F", | ||
"color-highlight-on-target": "#10101F", | ||
}, | ||
} | ||
|
||
ogp_site_url = "https://r2northstar.readthedocs.io/" | ||
ogp_image = "https://northstar.tf/assets/logo_1k.png" | ||
|
||
# -- Options for EPUB output | ||
epub_show_urls = "footnote" | ||
|
||
highlight_language = "squirrel" | ||
|
||
# furo theme specific | ||
pygments_dark_style = "one-dark" |
Oops, something went wrong.