Web accessibility question: A block of text is styled in a given way to indicate its status (in this case, deleted/inserted text in a diff). I want to communicate this role to screen reader users as well. Is there a good way to do that? A hidden bit of text at the top or a block would be a start, but doesn't effectively communicate the extent of the block.
@marijn Just saw in the MDN docs that there are <ins> and <del> HTML tags. That sounds like the perfect solution for this?
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del#accessibility_concerns
@marijn There’s the <del> tag iirc