I’m curious about the reasoning to have only the first of the authors
in the feed templates’ author
section.
The templates can be found here for atom and here for rss.
The part for the author is similar in both:
<author>
{%- if page.authors -%}
{{ page.authors[0] }}
{%- elif config.author -%}
{{ config.author }}
{%- else -%}
Unknown
{%- endif -%}
</author>
Why only the first author instead of a comma separated list?