small change, commiting to work on builds

This commit is contained in:
Amber 2022-03-09 09:14:50 -06:00
parent 6d10a7ba68
commit 1f2145c9ca
2 changed files with 3 additions and 2 deletions

View File

@ -14,10 +14,11 @@ class readMarkdown():
def markdown(self):
file = open(self.mdFile, 'r')
outStr = str(markdown.markdown(file.read())) #TODO: I really want nice tab indentations
self.outStr = markdown.markdown(file.read(), tab_length=4, output_format="html")
file.close()
return(outStr)
return(self.outStr)
def __str__(self):
return(str(self.markdown()))

0
theme.py Normal file → Executable file
View File