View Single Post
Old 01-26-2018, 04:47 PM   #7
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,756
Karma: 24032915
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by elibrarian View Post
I guess that the ebook-distributors will demand new epubs to pass this as well as epubcheck in some not-too-distant future.
I looked into this and it seems the minimum requirements for reflowable epub3 books without scripts and multimedia files aren't actually that hard. All I had to do is:

1. Add the following section to the .opf metadata section:

Code:
<meta property="schema:accessibilitySummary">This publication conforms to WCAG 2.0 AA.</meta>
<meta property="schema:accessMode">textual</meta>
<meta property="schema:accessMode">visual</meta>
<meta property="schema:accessModeSufficient">textual</meta>
<meta property="schema:accessibilityFeature">structuralNavigation</meta
2. Add language attributes to all <html> tags.

3. Add chapter titles to empty <title></title> tags.

4. Add descriptions to empty <img> tag alt attributes.

5. Add role attributes to all tags with epub:type attributes that have an ARIA role equivalent.

Quote:
Originally Posted by elibrarian View Post
Since we're producing solely epub 3-books here nowadays, we've reprogrammed our in-house tools to cather for this
Does your in-house tool implement any other fixes that I've missed?

Quote:
Originally Posted by elibrarian View Post
Also, I've prepared an epub 3, that passes most of the ACE-tests.
I've updated a very simple MR epub3 book to make it WCAG 2.0 AA compatible. (Its only epub3-only feature is page numbers.)

Last edited by Doitsu; 01-26-2018 at 05:42 PM.
Doitsu is offline   Reply With Quote