From 4e19158e0eaa0338ac3b85752c16d79cd737f068 Mon Sep 17 00:00:00 2001 From: sommersoft Date: Mon, 2 Sep 2019 18:46:48 -0500 Subject: [PATCH] docs: make sphinx include 'docs/static/customstyle.css' --- conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conf.py b/conf.py index 56625e758f..3df958fe1f 100644 --- a/conf.py +++ b/conf.py @@ -369,3 +369,6 @@ texinfo_documents = [ intersphinx_mapping = {"cpython": ('https://docs.python.org/3/', None), "bus_device": ('https://circuitpython.readthedocs.io/projects/busdevice/en/latest/', None), "register": ('https://circuitpython.readthedocs.io/projects/register/en/latest/', None)} + +def setup(app): + app.add_stylesheet("customstyle.css")