Convert HTML entities to UTF-8 instead
Changes-by: this Python 3 script:
import html
with open("Mirrors.masterlist") as f:
for line in f:
print(html.unescape(line), end='')
Loading
Please register or sign in to comment