diff --git a/md_cleanup.py b/md_cleanup.py index acd9721..226c897 100644 --- a/md_cleanup.py +++ b/md_cleanup.py @@ -21,7 +21,7 @@ else: content = file.read() content = re.sub(r"`\*(.*)`[\\]?", r"*\g<1>", content) content = re.sub(r"!(\w+)", r"\g<1>", content) - content = re.sub(r"\* ", r"\* ", content) + content = re.sub(r"\* ", r"* ", content) file.seek(0) file.truncate() file.write(content)