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
+2
View File
@@ -186,6 +186,8 @@ class ToMarkdown(Tokenizer):
"""Replace tabs with spaces."""
spaces = spaceChar*nSpaces
self._fullMD = [p.replace("\t", spaces) for p in self._fullMD]
if self._keepMarkdown:
self._allMarkdown = [p.replace("\t", spaces) for p in self._allMarkdown]
return
##