A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

Cite element: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
(fix heading levels)
Line 58: Line 58:
* +1 [[User:Dalizard|Dimitar Haralanov]]
* +1 [[User:Dalizard|Dimitar Haralanov]]
* +1 [[User:Pigsonthewing|Andy Mabbett]]
* +1 [[User:Pigsonthewing|Andy Mabbett]]
* +1 [[User:Tjameswhite Tim White]]
* ...
* ...
</div>
</div>

Revision as of 12:40, 14 August 2010

Research, data, use cases, issues, and enhancements related to the HTML5 cite element.

Speaker

The cite element has been used (and recommended to be used) to refer to speakers in a conversation, or individuals when quoting them, thus HTML5 should explicitly permit and encourage this use.

This section serves to document both uses in the wild, and long-standing recommendations/documentations thereof.

Examples in the Wild

Documentation

Counter-arguments

original intent of cite element

  • 2007-06-07 Dan Connolly, Editor of HTML 2.0, said in IRC that

    <cite> was supposed to capture the chicago-manual-of-style idiom for titles of works. I have lost track of what it means these days.

    • This may have been the original intent (original theoretical purity), however, based on the example in the HTML4 spec(s) and adoption by the web community over the past 10+ years (see above examples in the wild), it makes more sense to define the <cite> element per actual usage (preferring authors), rather than original intent (theoretical purity), per the priority of constituencies HTML design principle. - Tantek 22:18, 13 August 2010 (UTC)
  • "DanC said allowing <cite> for speakers was a bug in HTML 4 that happened because he was asleep at the wheel."
    • Regardless of what DanC as a specifier may have intended, the authors have widely adopted the usage of cite for speakers, and thus since authors are considered over specifiers (per above-referenced design principle), we should prefer author usage over original specifier intent.

speakers are not italicized typically

  • "Since speakers aren't italicized typically, using <cite> for them doesn't really make sense. "
    • This sounds like either an argument from presentation, which seems backwards, as semantics should be determined first, and then authors can style semantics however they wish, or it's an argument from default presentation implementation, in which case once again per priority of constituencies HTML design principle, since authors are considered over implementers, we should respect author usage of cite for speakers over any particular implementer opinion of what cite should do or look like.

Opinions

Opinions on whether HTML5 should explicitly permit and encourage use of the cite element to refer to speakers in a conversation, or individuals when quoting them:

articles on speaker cite

Articles supporting the use of the cite element for marking up speakers:

speaker cite FAQ

Frequently Asked Questions about using the cite element for marking up speakers.

how do you connect the speaker cite to what was said

Question: How could we connect the speaker, CITE to what was said, Q, without nesting? Perhaps using FOR, as in form labels:

<cite for="good">Andy Mabbett</cite> said <q id="good">This is good</q>.

On the other hand, if we reverse that we could have a many-to-one relationship:

<cite id="andy">Andy Mabbett</cite> said <q for="andy">This is good</q> and later said <q for="andy">This is better</q>.</nowiki>

Answer: The existing 'cite' attribute on the <q> and <blockquote> elements can be used for this, in HTML4 and later:

<cite id="andy">Andy Mabbett</cite> said 
<q cite="#andy">This is good</q>
 and later said 
<q cite="#andy">This is better</q>.

speaker cite related

references