Use the old converter for nwd file, not the markdown class

This commit is contained in:
Veronica K. B. Olsen
2021-02-06 17:19:30 +01:00
parent c677db70b4
commit b59b3a3a74
4 changed files with 36 additions and 39 deletions
+8
View File
@@ -628,6 +628,14 @@ class Tokenizer():
return True
def saveRawMarkdown(self, savePath):
"""Save the data to a plain text file.
"""
with open(savePath, mode="w", encoding="utf8") as outFile:
for nwdPage in self.theMarkdown:
outFile.write(nwdPage)
return
##
# Internal Functions
##