8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a7bf2d commit 7c5f13fCopy full SHA for 7c5f13f
Doc/conf.py
@@ -74,6 +74,11 @@
74
'root_include_title': False # We use the version switcher instead.
75
}
76
77
+# Override stylesheet fingerprinting for Windows CHM htmlhelp to fix GH-91207
78
+# https://github.com/python/cpython/issues/91207
79
+if any('htmlhelp' in arg for arg in sys.argv):
80
+ html_style = 'pydoctheme.css'
81
+
82
# Short title used e.g. for <title> HTML tags.
83
html_short_title = '%s Documentation' % release
84
Misc/NEWS.d/next/Documentation/2022-08-01-23-17-04.gh-issue-91207._P8i0B.rst
@@ -0,0 +1,2 @@
1
+Fix stylesheet not working in Windows CHM htmlhelp docs.
2
+Contributed by C.A.M. Gerlach.
0 commit comments