Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33983809 authored by Martin Fischer's avatar Martin Fischer
Browse files

[doc] say how many engines are supported / enabled

parent 06435e08
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -14,6 +14,8 @@ Explanation of the :ref:`general engine configuration` shown in the table

.. jinja:: searx

   SearXNG supports {{engines | length}} search engines (of which {{enabled_engine_count}} are enabled by default).

   {% for category, engines in engines.items() | groupby('1.categories.0') %}

   {{category}} search engines
+1 −0
Original line number Diff line number Diff line
@@ -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 = {