Skip to content

Commit

Permalink
Set default add_cover_page to False
Browse files Browse the repository at this point in the history
  • Loading branch information
timvink committed Sep 21, 2020
1 parent b21b623 commit 860beac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Default `false`. This will add numbering to all figure captions (for example "Fi

## `add_cover_page`

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)
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)

## `cover_page_template`

Expand Down
2 changes: 1 addition & 1 deletion mkdocs_print_site_plugin/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class PrintSitePlugin(BasePlugin):
("add_full_urls", config_options.Type(bool, default=False)),
("enumerate_headings", config_options.Type(bool, default=False)),
("enumerate_figures", config_options.Type(bool, default=False)),
("add_cover_page", config_options.Type(bool, default=True)),
("add_cover_page", config_options.Type(bool, default=False)),
("cover_page_template", config_options.Type(str, default="")),
)

Expand Down

0 comments on commit 860beac

Please sign in to comment.