You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/API.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,8 @@ axe.configure({
145
145
},
146
146
reporter:"option",
147
147
checks: [Object],
148
-
rules: [Object]});
148
+
rules: [Object],
149
+
noHtml:Boolean});
149
150
```
150
151
151
152
#### Parameters
@@ -179,6 +180,7 @@ axe.configure({
179
180
*`tags` - array(optional, default `[]`). A list if the tags that "classify" the rule. In practice, you must supply some valid tags or the default evaluation will not invoke the rule. The convention is to include the standard (WCAG 2 and/or section 508), the WCAG 2 level, Section 508 paragraph, and the WCAG 2 success criteria. Tags are constructed by converting all letters to lower case, removing spaces and periods and concatinating the result. E.g. WCAG 2 A success criteria 1.1.1 would become ["wcag2a", "wcag111"]
180
181
*`matches` - string(optional, default `*`). A filtering CSS selector that will exclude elements that do not match the CSS selector.
181
182
*`disableOtherRules` - Disables all rules not included in the `rules` property.
183
+
*`noHtml` - Disables the HTML output of nodes from rules.
0 commit comments