Skip to content

Commit

Permalink
fix: markdownlint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeeyyy committed May 18, 2018
1 parent fa243ed commit aa90155
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build/tasks/aria-supported.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = function (grunt) {
}

const getMdContent = (roles, attributes) => {
return `# ARIA Roles supported by axe-core. \n \n \n | aria-role | axe-core support | \n | :------- | :------- | \n ${roles} \n \n \n # ARIA Attributes supported by axe-core. \n \n \n | aria-attribute | axe-core support| \n | :------- | :------- | \n ${attributes}`;
return `# ARIA Roles and Attributes supported by axe-core \n \n## Roles\n \n| aria-role | axe-core support | \n| :------- | :------- | \n${roles} \n## Attributes \n \n| aria-attribute | axe-core support| \n| :------- | :------- | \n${attributes}`;
}

const generateDoc = () => {
Expand Down
20 changes: 9 additions & 11 deletions doc/aria-supported.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# ARIA Roles supported by axe-core.
# ARIA Roles and Attributes supported by axe-core

## Roles

| aria-role | axe-core support |
| :------- | :------- |
| alert | Yes |
| aria-role | axe-core support |
| :------- | :------- |
| alert | Yes |
| alertdialog | Yes |
| application | Yes |
| article | Yes |
Expand Down Expand Up @@ -124,14 +125,11 @@
| widget | Yes |
| window | Yes |

## Attributes


# ARIA Attributes supported by axe-core.


| aria-attribute | axe-core support|
| :------- | :------- |
| aria-activedescendant | Yes |
| aria-attribute | axe-core support|
| :------- | :------- |
| aria-activedescendant | Yes |
| aria-atomic | Yes |
| aria-autocomplete | Yes |
| aria-busy | Yes |
Expand Down

0 comments on commit aa90155

Please sign in to comment.