accessibility

From Microformats Wiki
Jump to navigation Jump to search

Accessibility

This page is for keeping track of issues relating to microformats and accessibility, in the hopes that any potential accessibility issues are resolved quickly, and for documenting techniques for making microformats more accessible.

We should all strive to make our published microformats, parser implementations, and not least this wiki, as accessible as possible, to all users, regardless of their physical abilities and needs. Readers are advised to follow the W3C's Web Content Accessibility Guidelines 1.0, to at least level 2. Further advice is available on the Accessify Forums.

External discussions

Mailing lists

Fora

Localization of RFC2426 'type' values

RFC2426 type values for adr, email, and tel were intended as machine-readable values. Used as real HTML content in the following example only works in English. The preceeding accessify forum discussion has already proven that reducing this problem to an abbr is not a valid, accessible solution.

<span class="tel" xml:lang="en">
  <span class="type">Home</span> (<span class="type">pref</span>erred):
  <span class="value">+1.415.555.1212</span>
</span>

Proposed Solution for hCard v2

Pull type values (and others such as dtstart values) into meta classes.

<span xml:lang="en">
  Home (preferred): <span class="tel type:home type:pref">+1.415.555.1212</span>
</span>
<span xml:lang="es">
  Casa (preferido): <span class="tel type:home type:pref">+1.415.555.1212</span>
</span>

Accessibility of this wiki

  • Large blocks of italic text are inaccessible to many readers, including people with types of visual impairment, dyslexia, etc. [1], [2]. [3], [4], [5] Andy Mabbett 14:33, 26 Nov 2006 (PST)
  • Using emboldening and italics to differentiate types on, e.g. the cheatsheet pages hcard-cheatsheet, is unhelpful to users of assistive technologies, text-only devices, etc. A number, letter or symbol should additionally be used. Andy Mabbett 14:33, 26 Nov 2006 (PST)
    • I think the emboldening is fine as it marks up the required properties. The italics are a bit of a problem but keep it simple at the moment. Additional characters can’t be used as they would break the class="property" template. Colours would be a way but are inaccessible to some users, so there is no real solution to that problem for now. Julian Stahnke 22:55, 26 Nov 2006 (GMT)
      • "I think the emboldening is fine" - how would you understand emboldening in a text-only browser like Lynx, or in an aural browser? Andy Mabbett 15:17, 26 Nov 2006 (PST)
        • Ups, I just assumed that it would use strong and em tags. Yeah, well, let’s think about it. Julian Stahnke 23:22, 26 Nov 2006 (GMT)
    • Of course, one could add that stuff after the class="property" thing. That might look a little cluttered though. I’ll consider that for the next revision/next cheat sheet I do. Julian Stahnke 22:57, 26 Nov 2006 (GMT)
      • All that's needed is:
* class="vcard" (1)
instead of:
* class="vcard"
Andy Mabbett 15:24, 26 Nov 2006 (PST)
    • Now resolved. Thanks to all who helped. Andy Mabbett 10:30, 11 Dec 2006 (PST)

See also

microformats-issues