Skip to content

Commit

Permalink
Deployed edbe14f with MkDocs version: 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 4, 2024
0 parents commit c80d5b4
Show file tree
Hide file tree
Showing 354 changed files with 518,193 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
3,940 changes: 3,940 additions & 0 deletions 404.html

Large diffs are not rendered by default.

4,091 changes: 4,091 additions & 0 deletions Modding/api/index.html

Large diffs are not rendered by default.

66 changes: 66 additions & 0 deletions Modding/conf.py
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"
Loading

0 comments on commit c80d5b4

Please sign in to comment.