remove print call from the blog renderer

This commit is contained in:
idk
2023-05-24 18:11:08 +00:00
parent 84d35a67c7
commit 8080799be5

View File

@ -140,7 +140,7 @@ def render_blog_post(slug):
with codecs.open(path, encoding='utf-8') as fd:
content = fd.read()
print(content)
#print(content)
# render the post with Jinja2 to handle URLs etc.
rendered_content = render_template_string(content)