diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2022-06-17 09:42:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-17 09:42:40 +0200 |
| commit | 9f819d4b6a406e4d5d38c5ab0434e81e65ec02d0 (patch) | |
| tree | 1b438a92d437327af56b5168859ce98a6403f54a | |
| parent | af699082db0615e9faff350d667d436329b82ab2 (diff) | |
| parent | 6bdc66b70e3c3940d12e7507fad1fb31ec6ef5b4 (diff) | |
Merge pull request #1341 from tiekoetter/fix-mojeek-xpath
[fix] mojeek engine: XPath
| -rw-r--r-- | searx/settings.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 4ade99a06..709e43627 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1585,8 +1585,8 @@ engines: search_url: https://www.mojeek.com/search?q={query}&s={pageno} results_xpath: //a[@class="ob"] url_xpath: ./@href - title_xpath: ./.. - content_xpath: ../../p[@class="s"] + title_xpath: ./h2 + content_xpath: ../p[@class="s"] suggestion_xpath: /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a first_page_num: 0 page_size: 10 |