Remove chapter_begin id from print output.

This commit is contained in:
Eric Huss 2021-05-22 12:11:52 -07:00
parent 7e7e779ef7
commit 16c5ec4d74
1 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,8 @@ impl HtmlHandlebars {
// Add page break between chapters
// See https://developer.mozilla.org/en-US/docs/Web/CSS/break-before and https://developer.mozilla.org/en-US/docs/Web/CSS/page-break-before
// Add both two CSS properties because of the compatibility issue
print_content.push_str(r#"<div id="chapter_begin" style="break-before: page; page-break-before: always;"></div>"#);
print_content
.push_str(r#"<div style="break-before: page; page-break-before: always;"></div>"#);
}
print_content.push_str(&fixed_content);