diff options
author | Allen <64094914+allendema@users.noreply.github.com> | 2021-07-03 18:54:43 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-07-03 21:51:26 +0200 |
commit | 9648d71ad8643f538fb631399be52f76cfd1a56e (patch) | |
tree | bf0c8e816dd94a4e04da6c6999d448cf51e343a2 /searx/settings.yml | |
parent | bb98a07b502766ab50e8212f95cd322219a46da3 (diff) | |
download | searxng-9648d71ad8643f538fb631399be52f76cfd1a56e.tar.gz searxng-9648d71ad8643f538fb631399be52f76cfd1a56e.zip |
[enh] add woxikon.de synonyme (Xpath)
Added synonyme.woxikon.de using the xpath engine. Adds a site which returns
word synonyms although just in German.
Depending on the query not all synonyms are shown because of not the best xpath
selection. But should do the job just fine.
Upstream example query: https://synonyme.woxikon.de/synonyme/test.php
Diffstat (limited to 'searx/settings.yml')
-rw-r--r-- | searx/settings.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index f6937358f..3df9952c0 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1477,6 +1477,23 @@ engines: timeout: 5.0 disabled: true + - name: woxikon.de synonyme + engine: xpath + shortcut: woxi + categories: general + timeout: 5.0 + disabled: true + search_url: https://synonyme.woxikon.de/synonyme/{query}.php + url_xpath: //div[@class="upper-synonyms"]/a/@href + content_xpath: //div[@class="synonyms-list-group"] + title_xpath: //div[@class="upper-synonyms"]/a + about: + website: https://www.woxikon.de/ + wikidata_id: # No Wikidata ID + use_official_api: false + require_api_key: false + results: HTML + - name: słownik języka polskiego engine: sjp shortcut: sjp |