summaryrefslogtreecommitdiff
path: root/_sources/admin/plugins.rst.txt
blob: d97b3dada0ba01793177c09d8c8d8327287a0a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.. _plugins generic:

===============
Plugins builtin
===============

.. sidebar:: Further reading ..

   - :ref:`dev plugin`

Configuration defaults (at built time):

:DO: Default on

.. _configured plugins:

.. jinja:: searx

   .. flat-table:: Plugins configured at built time (defaults)
      :header-rows: 1
      :stub-columns: 1
      :widths: 3 1 9

      * - Name
        - DO
        - Description

          JS & CSS dependencies

      {% for plgin in plugins %}

      * - {{plgin.name}}
        - {{(plgin.default_on and "y") or ""}}
        - {{plgin.description}}

          {% for dep in (plgin.js_dependencies + plgin.css_dependencies) %}
          | ``{{dep}}`` {% endfor %}

      {% endfor %}