diff options
author | Adam Tauber <asciimoo@gmail.com> | 2020-07-14 18:56:57 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2020-07-28 13:10:40 +0200 |
commit | 1f2dc6c64785ab962efbeed0cfc093fdd3f41bf0 (patch) | |
tree | 29ab9f053d577989a3a7c52c34126f8a6cc1dde8 /docs | |
parent | 1185c06a8732101ad16bb3a8926ff0797ff2c6b9 (diff) | |
download | searxng-1f2dc6c64785ab962efbeed0cfc093fdd3f41bf0.tar.gz searxng-1f2dc6c64785ab962efbeed0cfc093fdd3f41bf0.zip |
[enh] add external plugin support
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/plugins.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/dev/plugins.rst b/docs/dev/plugins.rst index 6add97517..16262ea6d 100644 --- a/docs/dev/plugins.rst +++ b/docs/dev/plugins.rst @@ -30,6 +30,13 @@ Example plugin ctx['search'].suggestions.add('example') return True +External plugins +================ + +External plugins are standard python modules implementing all the requirements of the standard plugins. +Plugins can be enabled by adding them to :ref:`settings.yml`'s ``plugins`` section. +Example external plugin can be found `here <https://github.com/asciimoo/searx_external_plugin_example>`_. + Register your plugin ==================== |