plugins.rst 715 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .. _plugins generic:
  2. ===============
  3. Plugins builtin
  4. ===============
  5. .. sidebar:: Further reading ..
  6. - :ref:`dev plugin`
  7. Configuration defaults (at built time):
  8. :DO: Default on
  9. .. _configured plugins:
  10. .. jinja:: searx
  11. .. flat-table:: Plugins configured at built time (defaults)
  12. :header-rows: 1
  13. :stub-columns: 1
  14. :widths: 3 1 9
  15. * - Name
  16. - DO
  17. - Description
  18. JS & CSS dependencies
  19. {% for plgin in plugins %}
  20. * - {{plgin.name}}
  21. - {{(plgin.default_on and "y") or ""}}
  22. - {{plgin.description}}
  23. {% for dep in (plgin.js_dependencies + plgin.css_dependencies) %}
  24. | ``{{dep}}`` {% endfor %}
  25. {% endfor %}