Files
website/blog.py
2026-05-04 10:33:09 +02:00

13 lines
280 B
Python
Executable File

#! /usr/bin/env python3
# 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))