We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In updating sphinx I am running into an error with a custom theme based on slides:
slides
[Error] TypeError: null is not an object (evaluating 'document.getElementById("documentation_options").getAttribute')
A related fix appears to be sphinx-doc/sphinx#4916
Blindly performing the layout.html fix indicated above resolves the issue:
layout.html
<script type="text/javascript" id="documentation_options" data-url_root="{{ pathto('', 1) }}" src="{{ pathto('_static/documentation_options.js', 1) }}"></script> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), VERSION: '{{ release|e }}', COLLAPSE_INDEX: false, FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}', HAS_SOURCE: {{ has_source|lower }} }; </script>
The text was updated successfully, but these errors were encountered:
Update geocat_slides theme for newer sphinx
11b19fd
See also nyergler/hieroglyph#173
No branches or pull requests
In updating sphinx I am running into an error with a custom theme based on
slides
:A related fix appears to be sphinx-doc/sphinx#4916
Blindly performing the
layout.html
fix indicated above resolves the issue:The text was updated successfully, but these errors were encountered: