2023-09-27 14:47:55 +00:00
|
|
|
#! /usr/bin/env python3
|
2023-05-05 10:55:05 +00:00
|
|
|
# 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))
|