From cf6c922557740ffd4e71610a836177b498912ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Mon, 7 Oct 2024 16:23:59 -0400 Subject: [PATCH] fix more docs --- docs/conf.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ebacb88b..a3752bce 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -95,12 +95,11 @@ def find_version(*file_paths) -> str: # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ["_static"] -html_context = { - "extra_css_files": [ - # override wide tables in RTD theme - "_static/theme_overrides.css" - ] -} +# These paths are either relative to html_static_path +# or fully qualified paths (eg. https://...) +html_css_files = [ + "theme_overrides.css", +] # Output file base name for HTML help builder. htmlhelp_basename = "PyJWTdoc"