Mozilla sphinx’s theme¶
This is a version of the Mozilla Developer Network theme, for the Sphinx documentation engine..
Here is how I use it¶
To use it, you need to clone it somewhere in your Sphinx’s architecture:
$ cd docs/source && mkdir _themes
$ git clone https://github.com/lmorchard/mozilla-mdn-sphinx-theme.git _themes/mozilla-mdn
and to configure Sphinx to use it. In your conf.py file:
html_theme_path = ['_themes']
html_theme = 'mozilla-mdn'
Take care and remove the pygments_style configuration, as it may not be of the better taste with the mozilla’s theme.
Any contributions are of course welcome!