Skip to content

Commit bcf39b1

Browse files
committed
accessibility guidance for #1454
1 parent a463444 commit bcf39b1

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Accessibility​ for Question Authors
2+
3+
It is important that we make course materials and content as accessible as possible. Higher education institutions have a legal responsibility to ensure their content meets accessibility standards. This page gives guidelines and resources on what we can do to improve accessibility.
4+
Authoring accessible STACK questions is simpler than writing accessible materials from scratch, particularly in comparison to PDF LaTeX documents.
5+
6+
* When authoring STACK questions, we are able to take advantage of the work done by the Moodle community, detailed in their [policies page](http://docs.moodle.org/dev/Accessibility).
7+
* When displaying mathematics in STACK, we use LaTeX rendered using MathJax. Details of what accessibility features this support are given on the [MathJax website](https://docs.mathjax.org/en/latest/basic/accessibility.html).
8+
* STACK itself uses very simple CSS and HTML form fields, which is considered a gold standard for accessibility, due to user adaptability.
9+
10+
However, this is not the whole picture. Colleagues must still consider accessibility when authoring questions.
11+
12+
Please consider/check the following key points:
13+
* Images:
14+
* If inserting a screenshot, consider if you could format the information you wish to communicate using HTML, e.g. code snippets and mathematical equations.
15+
* Add meaningful alternative text to all non-text objects, in particular images. This can be done using `<img src="/path/to.img.jpg" alt="Alt text">` in HTML, or `![Alt text](/path/to/img.jpg)` in markdown.
16+
* It is important that this text conveys the information that the figure would have if viewed. If there is text in the image then this must be given. Do not paraphrase this text. See [useful guidance on alternative text](https://accessibility.huit.harvard.edu/describe-content-images).
17+
* Links: Please add text to links rather than a full `https://` link, as it slows down screen reader users and makes navigation using verbal commands very difficult. However, avoid link text such as 'here' or 'read more', make each link disenable from other links on the page, and make it as clear as you can where the link leads just from the text. See [useful link text guidance](https://www.norfolk.gov.uk/article/44520/Links-and-link-text).
18+
* Colour:
19+
* do not use colour alone to convey meaning e.g. in a plot.
20+
* Ensure your text has contrast levels of at least 4:5:1, this can be easily checked with the WebAIM contrast checker.
21+
* JSXGraphs:
22+
* JSXGraphs are figures so must have alternative text. To add a description to a JSXGraph, use the `description` attribute in the board setup. For example:
23+
`description: 'Graph of the function f(x) = x squared'`.
24+
* Pay specific attention to refering exclusively to colour in a graph.
25+
* Consider users may be using keyboard navigation, be careful with interactive assesseed tasks requiring the user to click on the board to add points. Add an `add point` button.
26+
27+
Detailed guidance on digital accessibility is given by the WCAG 2.1 Accessibility Guidelines.

0 commit comments

Comments
 (0)