From a306d1b99df682bcee0165e9ba6ec175f389d520 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Menu?= Date: Mon, 24 Mar 2025 11:52:19 +0100 Subject: [PATCH] Add `A11yFeaturePageBreakMarkers` --- pkg/manifest/a11y.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/manifest/a11y.go b/pkg/manifest/a11y.go index ce703d1..b056080 100644 --- a/pkg/manifest/a11y.go +++ b/pkg/manifest/a11y.go @@ -342,6 +342,12 @@ const ( // The work includes an index to the content. A11yFeatureIndex A11yFeature = "index" + // The resource includes static page markers, such as those identified by the doc-pagebreak role. + // This value is most commonly used with ebooks for which there is a statically paginated + // equivalent, such as a print edition, but it is not required that the page markers correspond + // to another work. The markers may exist solely to facilitate navigation in purely digital works. + A11yFeaturePageBreakMarkers A11yFeature = "pageBreakMarkers" + // The resource includes a means of navigating to static page break locations. // The most common way of providing page navigation in digital publications is through a page list. A11yFeaturePageNavigation A11yFeature = "pageNavigation"