mirror of
https://github.com/rust-lang/mdBook
synced 2025-03-04 15:17:11 +00:00
Remove chapter_begin id from print output.
This commit is contained in:
parent
7e7e779ef7
commit
16c5ec4d74
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue