Skip to content

Commit 639073d

Browse files
authored
Docs: Fix broken table rows and related lint rule
Close #4200
1 parent 26db209 commit 639073d

File tree

3 files changed

+9
-20
lines changed

3 files changed

+9
-20
lines changed

.markdownlintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"MD013": {
3-
"code_blocks": false
3+
"code_blocks": false,
4+
"tables": false
45
},
56
"MD014": false,
67
"MD026": {

packages/hint/docs/user-guide/concepts/hints.md

+5-14
Original file line numberDiff line numberDiff line change
@@ -80,20 +80,11 @@ allowed `severity` ratings.
8080

8181
| `Severity` value | Details |
8282
|:--- |:--- |
83-
| `off` | The `hint` is not run. The same as deleting the `hint` from the
84-
`.hintrc`. |
85-
| `error` | If the `hint` finds a major issue that affects one or more
86-
targeted browsers. The specified content is broken and you should fix
87-
immediately. |
88-
| `warning` | If the `hint` finds an issue. The specified content is a problem
89-
that you should investigate and fix. The issue may not cause problems in
90-
practice. |
91-
| `hint` | If the `hint` finds a minor issue, such as something to fix. The
92-
specified content should be tracked and may cause problems in the future. The
93-
issue does not cause problems, but may become a `warning` in the future. |
94-
| `information` | The `hint` provides information. The specified content is
95-
highlighted since it is relevant to you. The information may help identify
96-
parts of a feature or provide instances of a feature for tracking. |
83+
| `off` | The `hint` is not run. The same as deleting the `hint` from the `.hintrc`. |
84+
| `error` | If the `hint` finds a major issue that affects one or more targeted browsers. The specified content is broken and you should fix immediately. |
85+
| `warning` | If the `hint` finds an issue. The specified content is a problem that you should investigate and fix. The issue may not cause problems in practice. |
86+
| `hint` | If the `hint` finds a minor issue, such as something to fix. The specified content should be tracked and may cause problems in the future. The issue does not cause problems, but may become a `warning` in the future. |
87+
| `information` | The `hint` provides information. The specified content is highlighted since it is relevant to you. The information may help identify parts of a feature or provide instances of a feature for tracking. |
9788

9889
You may configure hints using either the array or object syntax.
9990

packages/hint/docs/user-guide/configuring-webhint/summary.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,8 @@ hint configuration properties, which are defined in the following table.
2121
|:--- |:--- |
2222
| `connector` | How to access the resources. |
2323
| `formatters` | How to output the results. Multiple instances may exist. |
24-
| `parsers` | How to handle special files such as stylesheets, JavaScript,
25-
manifest, and so on. Multiple instances may exist. |
26-
| `hints` | What to test for and the
27-
[severity][UserGuideConceptsHintsHintConfiguration] it should have. Multiple
28-
instances may exist. |
24+
| `parsers` | How to handle special files such as stylesheets, JavaScript, manifest, and so on. Multiple instances may exist. |
25+
| `hints` | What to test for and the [severity][UserGuideConceptsHintsHintConfiguration] it should have. Multiple instances may exist. |
2926

3027
For additional information about `severity` and hint configurations, go to
3128
[Hint configuration[UserGuideConceptsHintsHintConfiguration].

0 commit comments

Comments
 (0)