codex-team/editor.js

Make editor accessible💡

Open

#1,510 opened on 2021年1月23日

GitHub で見る
 (4 comments) (8 reactions) (0 assignees)TypeScript (26,602 stars) (1,985 forks)batch import
good first issue

説明

Currently the editor is not accessible for screen readers because:

  1. It does not provide accessible names for interative elements.
  2. It relies on non-iteractive elements for interaction.

Proposed solution:

  1. Add accessible names to interactive elements via aria-label attribute or visually hidden text.
  2. Add role="button" attribute to all interactive elements or (better) use button tag instead of div.
  3. Add aria-hidden="true" and focusable="false" to SVG icons.

コントリビューターガイド