This commit is contained in:
Joseph Cheung 2023-02-27 13:12:16 +08:00
parent bdd2c2c318
commit 03ff28153c
2 changed files with 2 additions and 4 deletions

File diff suppressed because one or more lines are too long

View file

@ -1290,7 +1290,7 @@ function replaceUrlWithFootnote(text) {
}
function beautify(text)
{
new_text=text.replaceAll("","(").replaceAll("",")").replaceAll(", ",",").replaceAll("链接:","").replaceAll("链接:","")
new_text=text.replaceAll("","(").replaceAll("",")").replaceAll(", ",",").replaceAll("链接:","").replaceAll("链接:","").replace(/(https?:\/\/(?!url\d)\S+)/g, '');
for(let i=prompt.url_pair.length;i>=0;--i)
{
new_text = new_text.replaceAll("(url"+String(i),"(https://url"+String(i) )