16

As far as I can see both Atom 1.0 and Rss 2.0 don't support multiple authors. What I want is just to double check with you guys whether there is a more or less standard way for including multiple authors except like so:

<author>Auhtor A., Author B.</author>
Dan Lowe
  • 51,713
  • 20
  • 123
  • 112
Sergej Andrejev
  • 9,091
  • 11
  • 71
  • 108
  • This question is probably more suited on a site specific to web programming. Since you got an answer, and it has been accepted, and it can be related to programming web applications, the question will be left here, but consider other sites for future questions of this nature. – Lasse V. Karlsen May 23 '11 at 21:32

2 Answers2

9

While you may be right about RSS, Atom 1.0 does specify a format for listing multiple authors. It looks something like this:
<author>
  <name>Jane Doe</name>
</author>
<author>
  <name>John Doe</name>
</author>

Whether or not all feed readers handle that is a different matter. Both Safari 5 and Google Reader, for instance, display only the last author in the list. This may be because the interaction model and UI for these readers were designed with RSS in mind and so they neglect to support the more advanced features of Atom.

quikchange
  • 564
  • 2
  • 6
  • 14
5

Here is a good blog post about this:

http://www.xn--8ws00zhy3a.com/blog/2007/04/rss-email-addresses

Basically the answer is no, there is no standard format for multiple authors because there isn't even a standard format used for single authors. In fact, according to the RSS 2.0 standard, the <author> tag isn't for the name but for the email address of the author. They specify it in the format of john.doe@gmail.com (John Doe) but there is not a set standard saying that is the way it must be. The basic consensus is that you cannot expect to parse this field. Since that is the case, you can list it any way you want and if someone is using the <author> tag, most likely they are just displaying it so you should be good to go.

IAmTimCorey
  • 16,412
  • 5
  • 39
  • 75