[Gobal] added flake8 and did format

This commit is contained in:
coja
2026-05-04 10:33:09 +02:00
parent 732640cf90
commit aa26a3675e
13 changed files with 308 additions and 150 deletions

View File

@@ -5,8 +5,8 @@ from markdown import markdown as to_markdown
blog = ""
with open('blogs/Lorem Ipsum.md','rt') as file:
with open("blogs/Lorem Ipsum.md", "rt") as file:
blog = file.read()
with open('blogs/Lorem Ipsum.html', 'wt') as file:
with open("blogs/Lorem Ipsum.html", "wt") as file:
file.write(to_markdown(blog))