Complete the manuscript build dialog, and the doc builder class

This commit is contained in:
Veronica Berglyd Olsen
2023-06-09 21:07:46 +02:00
parent 8b7aab36a2
commit 5f4b6009ce
10 changed files with 225 additions and 82 deletions
@@ -18,7 +18,6 @@ a {color: rgb(66, 113, 174);}
.break {text-align: left;}
.synopsis {font-style: italic;}
.comment {font-style: italic; color: rgb(100, 100, 100);}
article {width: 800px; margin: 40px auto;}
</style>
<body>
<article>
+1 -2
View File
@@ -517,7 +517,6 @@ def testCoreToHtml_Complex(mockGUI, fncPath):
# ==========
theStyle = theHtml.getStyleSheet()
theStyle.append("article {width: 800px; margin: 40px auto;}")
htmlDoc = (
"<!DOCTYPE html>\n"
"<html>\n"
@@ -540,7 +539,7 @@ def testCoreToHtml_Complex(mockGUI, fncPath):
)
saveFile = fncPath / "outFile.htm"
theHtml.saveHTML5(saveFile)
theHtml.saveHtml5(saveFile)
assert readFile(saveFile) == htmlDoc
# END Test testCoreToHtml_Complex