You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,6 @@
8
8
9
9
# mkdocs-print-site-plugin
10
10
11
-
> ⚠️ **This plugin is under development and the first version has not yet been released. Expected end of August :)**
12
-
13
11
[MkDocs](https://www.mkdocs.org/) plugin that adds a page to your site combining all pages, allowing your site visitors to *File > Print > Save as PDF* the entire site.
warnings.warn("[mkdocs-print-site] 'print-site' should be defined as the *last* plugin, to ensure the print page has any changes other plugins make. Please update the 'plugins:' section in your mkdocs.yml")
34
-
33
+
warnings.warn(
34
+
"[mkdocs-print-site] 'print-site' should be defined as the *last* plugin, to ensure the print page has any changes other plugins make. Please update the 'plugins:' section in your mkdocs.yml"
35
+
)
36
+
35
37
# Create the (empty) print page file in temp directory
Copy file name to clipboardExpand all lines: setup.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,19 @@
1
1
fromsetuptoolsimportsetup, find_packages
2
2
3
3
# Read README in UTF-8
4
-
withopen("README.md", 'r',encoding='UTF-8') asf:
4
+
withopen("README.md", "r", encoding="UTF-8") asf:
5
5
long_description=""
6
6
forlineinf:
7
7
long_description+=line
8
8
9
9
10
10
setup(
11
11
name="mkdocs-print-site-plugin",
12
-
version="0.0.1",
13
-
description="Add print site page",
12
+
version="0.1",
13
+
description="MkDocs plugin that adds a page to your site combining all pages, allowing your site visitors to *File > Print > Save as PDF* the entire site.",
0 commit comments