Merge pull request #1541 from ehuss/id-chapter_begin

Remove chapter_begin id from print output.
This commit is contained in:
Eric Huss 2021-06-08 14:55:06 -07:00 committed by GitHub
commit dc2062ab36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -63,7 +63,8 @@ impl HtmlHandlebars {
// Add page break between chapters // 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 // 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 // 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); print_content.push_str(&fixed_content);