-
-
Notifications
You must be signed in to change notification settings - Fork 486
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(aria-data): add DPub and Graphics modules (#4497)
- Loading branch information
Showing
14 changed files
with
4,177 additions
and
35 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# ARIA data | ||
|
||
This package provides a script that extracts data from the ARIA specification. | ||
This is a best effort approach because the ARIA specification is in a semi-structured representation. | ||
This package provides a script that extracts data from an ARIA specification. | ||
This is a best effort approach because the ARIA specifications are in a semi-structured representation. | ||
|
||
Just call the script with the version of the ARIA specification and write t oa given file: | ||
Just call the script with the name an dversion of the ARIA specification and write to a given file: | ||
|
||
```shell | ||
node generate-aria-data.js 1.2 >| aria-data-1-2.json | ||
node generate-aria-data.js wai-aria-1.2 >| wai-aria-1-2.json | ||
``` |
Oops, something went wrong.