Complete test coverage of doc build module

This commit is contained in:
Veronica Berglyd Olsen
2023-06-24 19:14:22 +02:00
parent 151e4b2770
commit f502411079
10 changed files with 919 additions and 47 deletions
+1 -1
View File
@@ -339,7 +339,7 @@ class ToHtml(Tokenizer):
},
"text": {
"css": self.getStyleSheet(),
"html": [page.rstrip("\n").split("\n") for page in self.fullHTML],
"html": [t.replace("\t", "	").rstrip().split("\n") for t in self.fullHTML],
}
}
with open(path, mode="w", encoding="utf-8") as fObj: