sphinx-doc / alabaster

Lightweight, configurable Sphinx theme
http://alabaster.readthedocs.io/
Other
738 stars 189 forks source link

Add a tip to docs about extra_nav_links and OrderedDict #127

Closed joealcorn closed 10 months ago

joealcorn commented 6 years ago

Dicts are unordered, so I think we should encourage people to use OrderedDict instead. I think this is preferable to accepting a list as suggested in #109 because it keeps things simple.

AA-Turner commented 10 months ago

Dictionaries are now ordered, in Python 3.6 and later.

A