diff --git a/searx/webapp.py b/searx/webapp.py index 604715f4c..c0fbe1e31 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -746,6 +746,7 @@ def search(): gpt = markdown.markdown( gpt , extensions=['footnotes']) for urls in url_pair.keys(): gpt = gpt.replace("#fn:"+urls.replace("https://url",""),url_pair[urls]) + gpt = gpt.replace("#fn:url"+urls.replace("https://url",""),url_pair[urls]) gptbox = { 'infobox': 'GPT3', 'id': 'gpt'+str(len(prompt)),