diff options
author | Adam Tauber <asciimoo@gmail.com> | 2018-06-06 12:03:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-06 12:03:08 +0200 |
commit | 8dec30123e16e66b5a30dcee5b3266f75ffadd2f (patch) | |
tree | b3d57d33bdbd772f31542496ac70f3ea60ed2810 | |
parent | 4c0ffa308eaf111411c0a53ab52a8663ddbbd43f (diff) | |
parent | 4f4df6273b1a8fb1a002650e3e6531b94ec46ec6 (diff) | |
download | searxng-8dec30123e16e66b5a30dcee5b3266f75ffadd2f.tar.gz searxng-8dec30123e16e66b5a30dcee5b3266f75ffadd2f.zip |
Merge pull request #1312 from Venca24/fix_google_scholar
[fix] google scholar engine
-rw-r--r-- | searx/settings.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 988076f8a..1b18f55b3 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -311,7 +311,7 @@ engines: engine : xpath paging : True search_url : https://scholar.google.com/scholar?start={pageno}&q={query}&hl=en&as_sdt=0,5&as_vis=1 - results_xpath : //div[@class="gs_r"]/div[@class="gs_ri"] + results_xpath : //div[contains(@class, "gs_r")]/div[@class="gs_ri"] url_xpath : .//h3/a/@href title_xpath : .//h3/a content_xpath : .//div[@class="gs_rs"] |