diff options
author | Adam Tauber <asciimoo@gmail.com> | 2016-12-23 12:54:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-23 12:54:02 +0100 |
commit | 4b225eb7efad8da442c9105b44b5c64fa5c01c21 (patch) | |
tree | 3ef0c1363219bf865396bcb147dfd7e3118f3406 | |
parent | 19cd2bf3b52d4851053030c570322df1c637f9b8 (diff) | |
parent | ee320d4e5b3ae4298334801b1d002b4f59d741e5 (diff) | |
download | searxng-4b225eb7efad8da442c9105b44b5c64fa5c01c21.tar.gz searxng-4b225eb7efad8da442c9105b44b5c64fa5c01c21.zip |
Merge pull request #661 from davidar/et
Online Etymology Dictionary
-rw-r--r-- | searx/settings.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index eee2903b6..527c80829 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -154,6 +154,17 @@ engines: shortcut : ddg disabled : True + - name : etymonline + engine : xpath + paging : True + search_url : http://etymonline.com/?search={query}&p={pageno} + url_xpath : //dt/a[1]/@href + title_xpath : //dt + content_xpath : //dd + suggestion_xpath : //a[@class="crossreference"] + first_page_num : 0 + shortcut : et + # api-key required: http://www.faroo.com/hp/api/api.html#key # - name : faroo # engine : faroo |