1
0
mirror of https://github.com/searxng/searxng.git synced 2024-07-16 22:30:12 +02:00

Merge pull request #2396 from lucky13820/patch-1

Fix the StartPage result title is showing the url
This commit is contained in:
Alexandre Flament 2020-12-17 08:23:34 +01:00 committed by GitHub
commit 88660fde90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ search_url = base_url + 'do/search'
# ads xpath //div[@id="results"]/div[@id="sponsored"]//div[@class="result"]
# not ads: div[@class="result"] are the direct childs of div[@id="results"]
results_xpath = '//div[@class="w-gl__result__main"]'
link_xpath = './/a[@class="w-gl__result-url result-link"]'
link_xpath = './/a[@class="w-gl__result-title result-link"]'
content_xpath = './/p[@class="w-gl__description"]'