initial commit

This commit is contained in:
eline
2023-05-05 12:55:05 +02:00
parent e93c1ea05e
commit d614d04520
76 changed files with 1210 additions and 705 deletions

11
blog.py Normal file
View File

@@ -0,0 +1,11 @@
# just testing markdown library for now
from markdown import markdown as to_markdown
blog = ""
with open('blogs/Lorem Ipsum.md','rt') as file:
blog = file.read()
with open('blogs/Lorem Ipsum.html', 'wt') as file:
file.write(to_markdown(blog))