File tree 3 files changed +2
-9
lines changed
3 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,6 @@ Available configuration options for the `[output.html.print]` table:
224
224
225
225
- ** enable:** Enable print support. When ` false ` , all print support will not be
226
226
rendered. Defaults to ` true ` .
227
- - ** page-break** Insert page breaks between chapters. Defaults to ` true ` .
228
227
229
228
Available configuration options for the ` [output.html.fold] ` table:
230
229
@@ -293,7 +292,6 @@ input-404 = "not-found.md"
293
292
294
293
[output .html .print ]
295
294
enable = true
296
- page-break = true
297
295
298
296
[output .html .fold ]
299
297
enable = false
Original file line number Diff line number Diff line change @@ -580,16 +580,11 @@ impl HtmlConfig {
580
580
pub struct Print {
581
581
/// Whether print support is enabled.
582
582
pub enable : bool ,
583
- /// Insert page breaks between chapters. Default: `true`.
584
- pub page_break : bool ,
585
583
}
586
584
587
585
impl Default for Print {
588
586
fn default ( ) -> Self {
589
- Self {
590
- enable : true ,
591
- page_break : true ,
592
- }
587
+ Self { enable : true }
593
588
}
594
589
}
595
590
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ impl HtmlHandlebars {
45
45
ctx. html_config . curly_quotes ,
46
46
Some ( & path) ,
47
47
) ;
48
- if !ctx. is_index && ctx . html_config . print . page_break {
48
+ if !ctx. is_index {
49
49
// Add page break between chapters
50
50
// 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
51
51
// Add both two CSS properties because of the compatibility issue
You can’t perform that action at this time.
0 commit comments