Skip to content

Commit

Permalink
Docs: Address warning from pydata-sphinx-theme
Browse files Browse the repository at this point in the history
The warning read:

    The default value for `navigation_with_keys` will change to `False`
    in the next release. If you wish to preserve the old behavior for
    your site, set `navigation_with_keys=True` in the `html_theme_options`
    dict in your `conf.py` file. Be aware that `navigation_with_keys = True`
    has negative accessibility implications:
    pydata/pydata-sphinx-theme#1492

Here we set `navigation_with_keys=False` to avoid the negative
accessibility implications.
  • Loading branch information
sphuber committed Oct 27, 2023
1 parent 5f0e095 commit c868431
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
'github_url': 'https://github.com/aiidateam/aiida-quantumespresso',
'twitter_url': 'https://twitter.com/aiidateam',
'use_edit_page_button': True,
'navigation_with_keys': False,
'logo': {
'text': 'AiiDA Quantum ESPRESSO',
'image_light': '_static/logo_aiida_quantumespresso-light.png',
Expand Down

0 comments on commit c868431

Please sign in to comment.