Definition

Alternative text is provided for visual content (e.g., via the [HTML] alt attribute).

Examples

Example 1 — EPUB 3
<meta property="schema:accessibilityFeature">
   pageBreakMarkers
</meta>
Example 2 — EPUB 2
<meta name="schema:accessibilityFeature"
      content="pageBreakMarkers"/>
Example 3 — Audiobooks
"accessibilityFeature": ["pageBreakMarkers"]

Explanation

The pageBreakMarkers value is used to indicate that static page break locations are included in the text.

The inclusion of page break markers from a print source allows users to identify where they are in a digital publication relative to its print equivalent. The page break markers are typically accompanied by a page list that allows users to quickly navigate to a specific location.

Page break markers are also added to digital publications without a static paginated source to aid users in navigating the text.

See the page navigation knowledge base page for more information.

Page break identified using the DPUB-ARIA doc-pagebreak role.

<span id="pg24" role="doc-pagebreak" aria-label="page 24"/>

Related Links