[doc/modules] Add more space between text and screenshot

This commit is contained in:
tobi-wan-kenobi 2020-05-03 16:59:38 +02:00
parent 2f98240eed
commit 05b3fcf863
2 changed files with 44 additions and 44 deletions

View file

@ -95,7 +95,7 @@ class print_usage(argparse.Action):
doc = doc.replace("\n", "<br />")
if os.path.exists(os.path.join(basepath, 'screenshots', '{}.png'.format(m))):
doc = '{}<p />![{}](../screenshots/{}.png)'.format(doc, m, m)
doc = '{}<p /><p />![{}](../screenshots/{}.png)'.format(doc, m, m)
print("|{} |{} |".format(m, doc))
else: