mirror of
https://github.com/makeworld-the-better-one/md2gemini
synced 2025-04-09 05:59:05 +02:00
5 lines
104 B
Python
5 lines
104 B
Python
def normalize(s):
|
|
"""Make all newlines equal to \\n"""
|
|
|
|
return s.replace("\r\n", "\n").rstrip()
|