From 254ee97473788b99ddf458d511d4aa95784003c3 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 25 Apr 2024 09:35:26 +0700 Subject: [PATCH] Updated distribution files --- material/plugins/tags/plugin.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/material/plugins/tags/plugin.py b/material/plugins/tags/plugin.py index 6b2b529b6..084b59cb4 100644 --- a/material/plugins/tags/plugin.py +++ b/material/plugins/tags/plugin.py @@ -97,8 +97,10 @@ class TagsPlugin(BasePlugin[TagsConfig]): return self._render_tag_index(markdown) # Add page to tags index - for tag in page.meta.get("tags", []): - self.tags[tag].append(page) + tags = page.meta.get("tags", []) + if tags: + for tag in tags: + self.tags[tag].append(page) # Inject tags into page (after search and before minification) def on_page_context(self, context, page, config, nav): @@ -110,7 +112,8 @@ class TagsPlugin(BasePlugin[TagsConfig]): return # Provide tags for page - if "tags" in page.meta: + context["tags"] =[] + if "tags" in page.meta and page.meta["tags"]: context["tags"] = [ self._render_tag(tag) for tag in page.meta["tags"]