From 4c86ea90c0105336010558d45006d5930c8b7e92 Mon Sep 17 00:00:00 2001 From: andreasxp <28830446+andreasxp@users.noreply.github.com> Date: Sun, 28 Apr 2024 01:24:29 +0300 Subject: [PATCH] Add githubpages ext for correct style --- docs/conf.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index cb7cbb83..337265aa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,14 @@ # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration -extensions = ["myst_parser", "sphinx_design", "sphinx_copybutton", "sphinx.ext.autodoc", "sphinx.ext.napoleon"] +extensions = [ + "myst_parser", + "sphinx_design", + "sphinx_copybutton", + "sphinx.ext.autodoc", + "sphinx.ext.napoleon", + "sphinx.ext.githubpages", +] myst_enable_extensions = ["colon_fence"] autodoc_member_order = "groupwise"