From 0f71ecde47a3f7c3245c5bcf545ef5281376768c Mon Sep 17 00:00:00 2001 From: Daniel Woste Date: Sun, 24 Mar 2024 14:27:18 +0100 Subject: [PATCH] Doc Font fix (#1152) Sets font=False for the documentation, to avoid usage of google fonts. See https://jbms.github.io/sphinx-immaterial/customization.html#themeconf-font --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 448b0b914..6821b4e29 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -441,6 +441,7 @@ def custom_defined_func(): html_favicon = "./_static/sphinx-needs-logo-favicon.png" # material theme options (see theme.conf for more information) html_theme_options = { + "font": False, "icon": { "repo": "fontawesome/brands/github", },