diff --git a/searx/webapp.py b/searx/webapp.py index 9b6af9acc..449f5cf9e 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -983,13 +983,13 @@ function replaceUrlWithFootnote(text) { } function beautify(text) { -new_text=text +new_text=text.replaceAll("(","(").replaceAll(")",")") for(let i=prompt.url_pair.length;i>=0;--i) { new_text = new_text.replaceAll("(url"+String(i),"(https://url"+String(i) ) new_text = new_text.replaceAll("(链接"+String(i),"(https://url"+String(i) ) } - new_text = replaceUrlWithFootnote(new_text.replaceAll("(","(").replaceAll(")",")")) + new_text = replaceUrlWithFootnote(new_text) for(let i=prompt.url_pair.length;i>=0;--i) {