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
"[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"
39
40
)
40
41
42
+
# Raise error when using instant loading
43
+
if"features"inconfig.get("theme"):
44
+
if"instant"inconfig.get("theme")["features"]:
45
+
raiseConfigurationError(
46
+
"[mkdocs-print-site] plugin is not compatible with instant loading. Remove the theme feature 'instant' in your mkdocs.yml file, or disable this plugin."
47
+
)
48
+
41
49
# Create the (empty) print page file in temp directory
0 commit comments