1
0
mirror of https://github.com/makeworld-the-better-one/md2gemini synced 2025-04-09 05:59:05 +02:00
md2gemini/tests/util.py
2020-09-05 15:29:32 -04:00

5 lines
104 B
Python

def normalize(s):
"""Make all newlines equal to \\n"""
return s.replace("\r\n", "\n").rstrip()