diff options
author | Martin Fischer <martin@push-f.com> | 2021-12-21 12:54:01 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-12-21 13:00:31 +0100 |
commit | 33983809e4e2ede9caf3df12b995c6fa1e5f1d8d (patch) | |
tree | dadea372bc1e09f37045feaf08724685ca96596c /docs/conf.py | |
parent | 06435e08efdfbc8fa19768fe17552e1339570ee0 (diff) | |
download | searxng-33983809e4e2ede9caf3df12b995c6fa1e5f1d8d.tar.gz searxng-33983809e4e2ede9caf3df12b995c6fa1e5f1d8d.zip |
[doc] say how many engines are supported / enabled
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py index c755b8406..a319762e2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,6 +47,7 @@ jinja_contexts = { 'version': { 'node': os.getenv('NODE_MINIMUM_VERSION') }, + 'enabled_engine_count': sum(not x.disabled for x in searx.engines.engines.values()), }, } jinja_filters = { |