diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2019-12-28 01:25:16 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2019-12-28 01:25:16 +0100 |
commit | d1892b211268d958e4134c82328ba1e6065a7fa3 (patch) | |
tree | 0994e128ab7e30c79cf6cb25798bff135e2d0df6 /docs/conf.py | |
parent | d6f2802e4b6066b718e86ab53ea168ab2a3394e9 (diff) | |
download | searxng-d1892b211268d958e4134c82328ba1e6065a7fa3.tar.gz searxng-d1892b211268d958e4134c82328ba1e6065a7fa3.zip |
docs(admin): add article 'Buildhosts' with system requirements
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index e041428ff..be0c9d6ee 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,6 +53,7 @@ extlinks['ctan'] = ( 'https://ctan.org/pkg/%s', 'CTAN: ') extensions = [ + 'sphinx.ext.imgmath', 'sphinx.ext.extlinks', 'sphinx.ext.viewcode', "sphinx.ext.autodoc", @@ -79,10 +80,15 @@ issues_github_path = "asciimoo/searx" # HTML ----------------------------------------------------------------- sys.path.append(os.path.abspath('_themes')) - html_theme_path = ['_themes'] html_theme = "searx" +# sphinx.ext.imgmath setup +html_math_renderer = 'imgmath' +imgmath_image_format = 'svg' +imgmath_font_size = 14 +# sphinx.ext.imgmath setup END + html_theme_options = {"index_sidebar_logo": True} html_context = { "project_links": [ |