#accessibility question:
I'm writing a plain #HTML webpage, and I'd like to write two lists. One of arguments, and one of counter-arguments. I'd like each element in the second list to reference its corresponding argument in the first list.
For sighted-folks, I think using strikethrough text is a good way to get the effect I want. In markdown it would look something like:
Arguments:
- argument1
- argument2
Counters:
- ~argument1~ counter-1
- ~argument2~ counter-2
However, in HTML I have more options than just using the tilde that markdown gives me. I could use a `s` tag to indicate strikethrough text. Or I could use a `del` tag to indicate deleted text.
My reading of MDN[1] suggests that in my case `s` is more appropriate, but if there's anyone with more experience with #screenreader or #braille tech, I'd love to hear any advice.
[1] https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements
