Hello, I’d like to be able to tell a screen reader to skip certain text such as page headers and page numbers. I’m not currently compiling against the UA-1 standard (I need to add some alt text), but is there anything I can do to hint to a screen-reader that it shouldn’t read something out?
For context, here’s the page setup I’m currently using:
#set page(
paper: "a4",
header: context {
set align(center)
block(
width: header-footer-width,
{
if calc.odd(here().page()) {
align(right, emph(hydra(1)))
} else {
align(left, emph(hydra(2)))
}
line(length: 100%)
},
)
},
footer: context {
set align(center)
set block(width: header-footer-width)
align(center)[#counter(page).display()]
},
)