We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7569e08 commit 1752ef1Copy full SHA for 1752ef1
mkdocs_rss_plugin/integrations/theme_material_blog_plugin.py
@@ -124,7 +124,7 @@ def author_name_from_id(self, author_id: str) -> str:
124
if author_id in self.blog_plugin_cfg.authors:
125
author_metadata = self.blog_plugin_cfg.authors.get(author_id)
126
if "email" in self.blog_plugin_cfg.authors.get(author_id):
127
- return f"{author_metadata.get('name')} ({author_metadata.get('email')})"
+ return f"{author_metadata.get('email')} ({author_metadata.get('name')})"
128
else:
129
return author_metadata.get("name")
130
0 commit comments