artemis-analytics / artemis

Apache License 2.0
5 stars 2 forks source link

Change Documentation Theme #13

Closed DominicParent closed 4 years ago

DominicParent commented 4 years ago

Documentation theme will be changed to Sphinx RTD Theme.

DominicParent commented 4 years ago

The conf.py file is modified as follows:

import sphinx_rtd_theme

extensions = [
    ...
    "sphinx_rtd_theme",
]

html_theme = "sphinx_rtd_theme"

Instructions found here: https://github.com/readthedocs/sphinx_rtd_theme

Also need to install the sphinx rdt theme with conda:

conda install sphinx_rtd_theme -c conda-forge