Skip to content

Commit

Permalink
Merge pull request searx#1366 from kvch/fix-etymonline-engine
Browse files Browse the repository at this point in the history
Fix etymonline engine
  • Loading branch information
asciimoo authored Aug 11, 2018
2 parents eea2e8e + 5eeb3f2 commit b8978b4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions searx/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,9 @@ engines:
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"]
url_xpath : //a[contains(@class, "word--")]/@href
title_xpath : //p[contains(@class, "word__name--")]/text()
content_xpath : //section[contains(@class, "word__defination")]/object
first_page_num : 0
shortcut : et
disabled : True
Expand Down

0 comments on commit b8978b4

Please sign in to comment.