Merge pull request #1541 from ehuss/id-chapter_begin
Remove chapter_begin id from print output.
This commit is contained in:
commit
dc2062ab36
|
@ -63,7 +63,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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue