This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
+++ This bug was initially created as a clone of Bug #23175 +++ The recent changes in the definitions of <cite> and <blockquote> have been a massive improvement. However, consider the following example: <blockquote> Who is your favourite doctor (in <cite>Doctor Who</cite>)? - <cite>John Smith</cite> </blockquote> We can see that, in that blockquote, there are two different uses for <cite>. The first represents the title of a work, and the second represents the source of the quote. Therefore, there is no semantic way to differentiate between the former and latter meaning. Therefore, I'd like to propose that it should be a requirement for authors to specify the source of a quote inside the <footer> element; rather than this just being optional. Note that this is not a problem with inline quotes, because the <cite> would be outside the quote tags: <q>Who is your favourite doctor (in <cite>Doctor Who</cite>)?</q> - <cite>John Smith</cite>
Putting the source of the quote inside the <blockquote> at all is non-conforming, so this is a non-issue. (Also, putting a name in <cite> is non-conforming.) The way you distinguish between something that's in the quote and something that's outside the quote is by looking at whether the thing is in the <blockquote> or not. It's actually very simple. :-)
*** Bug 23315 has been marked as a duplicate of this bug. ***
(In reply to Ian 'Hixie' Hickson from comment #1) > Putting the source of the quote inside the <blockquote> at all is > non-conforming, so this is a non-issue. (Also, putting a name in <cite> is > non-conforming.) > > The way you distinguish between something that's in the quote and something > that's outside the quote is by looking at whether the thing is in the > <blockquote> or not. It's actually very simple. :-) This, to me, is the solution I prefer. However, we now have two specs giving contradictory definitions. Which one should I conform to?