├── .gitignore ├── README.md └── docs └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | .DS_Store 3 | .sass-cache 4 | node_modules 5 | dest 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Interactive WCAG 2 | 3 | A filterable and shareable version of the WCAG 2.0 spec. 4 | 5 |

This project is no longer maintained

6 | 7 | Check out [our article about the WCAG 2.1 update](https://www.viget.com/articles/what-you-need-to-know-about-wcag-2-1/) and then bookmark the W3C's excellent [WCAG 2.1 Reference](https://www.w3.org/WAI/WCAG21/quickref/?currentsidebar=%23col_customize). It's up to date with the new spec and has similar filtering options to our Interactive WCAG.

8 | 9 | --- 10 | 11 | 12 | Code At Viget 13 | 14 | 15 | Visit [code.viget.com](http://code.viget.com) to see more projects from [Viget.](https://viget.com) 16 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Interactive WCAG 8 | 9 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 22 | 23 | 28 | 29 |
30 | 31 | 32 | 33 | --------------------------------------------------------------------------------