Update webapp.py

This commit is contained in:
luxtiasco 2023-02-22 04:32:24 +08:00 committed by GitHub
parent aff493b99c
commit f13a02c6e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -984,7 +984,13 @@ function replaceUrlWithFootnote(text) {
} }
function beautify(text) function beautify(text)
{ {
new_text = replaceUrlWithFootnote(text.replaceAll("","(").replaceAll("",")")) new_text=text
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("",")"))
for(let i=prompt.url_pair.length;i>=0;--i) for(let i=prompt.url_pair.length;i>=0;--i)
{ {