small change, commiting to work on builds
This commit is contained in:
parent
6d10a7ba68
commit
1f2145c9ca
|
@ -14,9 +14,10 @@ class readMarkdown():
|
||||||
|
|
||||||
def markdown(self):
|
def markdown(self):
|
||||||
file = open(self.mdFile, 'r')
|
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()
|
file.close()
|
||||||
return(outStr)
|
return(self.outStr)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
|
|
Loading…
Reference in New Issue