Skip to content

Commit 860beac

Browse files
committed
Set default add_cover_page to False
1 parent b21b623 commit 860beac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Default `false`. This will add numbering to all figure captions (for example "Fi
4141

4242
## `add_cover_page`
4343

44-
Default `true`. When enabled, a cover page is added to the print page, displaying the `site_title` and other information from the `mkdocs.yml` file. See also [Customizing the cover page](cover_page.md)
44+
Default `false`. When enabled, a cover page is added to the print page, displaying the `site_title` and other information from the `mkdocs.yml` file. See also [Customizing the cover page](cover_page.md)
4545

4646
## `cover_page_template`
4747

mkdocs_print_site_plugin/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class PrintSitePlugin(BasePlugin):
2626
("add_full_urls", config_options.Type(bool, default=False)),
2727
("enumerate_headings", config_options.Type(bool, default=False)),
2828
("enumerate_figures", config_options.Type(bool, default=False)),
29-
("add_cover_page", config_options.Type(bool, default=True)),
29+
("add_cover_page", config_options.Type(bool, default=False)),
3030
("cover_page_template", config_options.Type(str, default="")),
3131
)
3232

0 commit comments

Comments
 (0)