You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the epub techniques, the variable setup for non_textual_content_images in 4.2.2 is checking the wrong metadata property for the visual content indicators:
/package/metadata/meta[@property="schema:accessibilityFeature" and (text()="chartOnVisual" ...
It should be checking schema:accessMode not schema:accessibilityFeature. The value tests could also be shortened to avoid all the "or" connectors:
/package/metadata/meta[@property="schema:accessMode" and text() = ("chartOnVisual", "chemOnVisual", "diagramOnVisual", "mathOnVisual", "musicOnVisual", "textOnVisual")]
The text was updated successfully, but these errors were encountered:
In the epub techniques, the variable setup for
non_textual_content_images
in 4.2.2 is checking the wrong metadata property for the visual content indicators:It should be checking
schema:accessMode
notschema:accessibilityFeature
. The value tests could also be shortened to avoid all the "or" connectors:/package/metadata/meta[@property="schema:accessMode" and text() = ("chartOnVisual", "chemOnVisual", "diagramOnVisual", "mathOnVisual", "musicOnVisual", "textOnVisual")]
The text was updated successfully, but these errors were encountered: