Closed schroedingersZombie closed 7 months ago
Author does not support name and email.
It is supposed to be used as author = ['Person1', 'Person2']. As stated here https://github.com/adityatelange/hugo-PaperMod/wiki/Variables#page-variables
Hugo does not support author config https://github.com/gohugoio/hugo/issues/10551#issuecomment-1358107638
Describe the bug The usage of the params.author key mismatches between rss template and page template. While the rss template expects this key to have the subkeys name and email, the page template expects it to be a list of names or a single name.
Steps to reproduce the behavior: edit hugo.yaml, insert
Expected behavior: The author gets displayed with the post title (maybe even with a mailto: link), while the rss managingEditor gets set.
Actual behavior: While managingEditor gets set correctly, the author under the post title gets rendered as follows:
I worked around the problem by modifiying layouts/partials/author.html:
This still won't work if multiple authors are to be named.