We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c64dc03 + 22bed60 commit 3e7519dCopy full SHA for 3e7519d
src/mkdocs_print_site_plugin/renderer.py
@@ -104,7 +104,7 @@ def get_html_from_items(
104
105
# Support mkdocs-material tags
106
# See https://squidfunk.github.io/mkdocs-material/plugins/tags
107
- if "tags" in item.meta:
+ if hasattr(item, "meta") and item.meta.get("tags"):
108
tags = item.meta["tags"]
109
tags_html = "<nav class='md-tags'>"
110
for tag in tags:
0 commit comments