Skip to content

Commit

Permalink
fixup: invalid linebreak after markdown link format in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed Jul 9, 2020
1 parent f0e4da2 commit 632a8e7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/argparse/argparse_after_doc.py
Expand Up @@ -13,6 +13,7 @@ def format_markdown():
for line in source_file:
newline = line.replace('&nbsp;&nbsp;<br>', ' \n')
newline = newline.replace(': \n', ': \n\n')
newline = newline.replace(':\nhttps', ': https')
newline = newline.replace('\n*\n','\n* ')
newlines.append(newline)
with open("docs/argparse/args.md", "w") as source_file:
Expand Down

0 comments on commit 632a8e7

Please sign in to comment.