Why the default feed templates only use the first author?

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?

author is a single author entry. We could have several author entries though apparently so that would be better

Hi @keats , I opened a PR adding support for multiple authors. I’m not sure that is the best looking code, any suggestions are very welcome!