You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
html=html.text().replace(/\r\n/g,'\n')// windows to linux new line style.replace(/\t/g,'')// no tabs.replace(/ +/g,' ')// whitespaces.split('\n').map(line=>line.trim()).join('\n')// trim every line.replace(/\n{3,}/g,'\n\n');// no more than two new lines in a row
This would fix the formatting issues seen on lyrics.ovh.
The text was updated successfully, but these errors were encountered:
You could improve the following formatting logic :
alltomp3/index.js
Lines 75 to 80 in 7129f17
With :
This would fix the formatting issues seen on lyrics.ovh.
The text was updated successfully, but these errors were encountered: