forked from zaclys/searxng
		
	[fix] wikipedia: remove HTML from the title
fr.wikipedia.org (and it seems not other wikipedia websites), adds HTML to api_result['displayTitle']. (Search for '!wp :fr Braid' for example) The commit uses api_result['title']
This commit is contained in:
		
							parent
							
								
									06b754ad67
								
							
						
					
					
						commit
						fcfcf662ff
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -76,7 +76,7 @@ def response(resp): | ||||||
|     if api_result.get('type') != 'standard': |     if api_result.get('type') != 'standard': | ||||||
|         return [] |         return [] | ||||||
| 
 | 
 | ||||||
|     title = api_result['displaytitle'] |     title = api_result['title'] | ||||||
|     wikipedia_link = api_result['content_urls']['desktop']['page'] |     wikipedia_link = api_result['content_urls']['desktop']['page'] | ||||||
| 
 | 
 | ||||||
|     results.append({'url': wikipedia_link, 'title': title}) |     results.append({'url': wikipedia_link, 'title': title}) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Alexandre Flament
						Alexandre Flament