diff --git a/docs/rules/valid-v-bind.md b/docs/rules/valid-v-bind.md
index d430a572c..8809a9314 100644
--- a/docs/rules/valid-v-bind.md
+++ b/docs/rules/valid-v-bind.md
@@ -15,20 +15,22 @@ This rule does not report `v-bind` directives which do not have their argument (
This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
+
```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
diff --git a/docs/rules/valid-v-cloak.md b/docs/rules/valid-v-cloak.md
index 4927fc093..34ae27f72 100644
--- a/docs/rules/valid-v-cloak.md
+++ b/docs/rules/valid-v-cloak.md
@@ -12,19 +12,19 @@ This rule reports `v-cloak` directives in the following cases:
- The directive has that modifier. E.g. `
`
- The directive has that attribute value. E.g. ``
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
diff --git a/docs/rules/valid-v-else-if.md b/docs/rules/valid-v-else-if.md
index edc29c9ec..203e9a3be 100644
--- a/docs/rules/valid-v-else-if.md
+++ b/docs/rules/valid-v-else-if.md
@@ -16,20 +16,20 @@ This rule reports `v-else-if` directives in the following cases:
This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
-
+
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
diff --git a/docs/rules/valid-v-else.md b/docs/rules/valid-v-else.md
index 7a0d63887..b1f5e0bb4 100644
--- a/docs/rules/valid-v-else.md
+++ b/docs/rules/valid-v-else.md
@@ -14,20 +14,20 @@ This rule reports `v-else` directives in the following cases:
- The directive is on the elements that the previous element don't have `v-if`/`v-if-else` directives. E.g. ``
- The directive is on the elements which have `v-if`/`v-if-else` directives. E.g. ``
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
-
+
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
diff --git a/docs/rules/valid-v-for.md b/docs/rules/valid-v-for.md
index cfb14c284..3211e0d60 100644
--- a/docs/rules/valid-v-for.md
+++ b/docs/rules/valid-v-for.md
@@ -22,37 +22,37 @@ The following cases are syntax errors:
- The directive's value is not the form `alias in expr`. E.g. ``
- The alias is not LHS. E.g. ``
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
diff --git a/docs/rules/valid-v-html.md b/docs/rules/valid-v-html.md
index fcd74dc9e..ccc4dfc60 100644
--- a/docs/rules/valid-v-html.md
+++ b/docs/rules/valid-v-html.md
@@ -14,19 +14,19 @@ This rule reports `v-html` directives in the following cases:
This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
diff --git a/docs/rules/valid-v-if.md b/docs/rules/valid-v-if.md
index d036fc8a7..6e38ae81c 100644
--- a/docs/rules/valid-v-if.md
+++ b/docs/rules/valid-v-if.md
@@ -15,29 +15,29 @@ This rule reports `v-if` directives in the following cases:
This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
diff --git a/docs/rules/valid-v-model.md b/docs/rules/valid-v-model.md
index 25538933c..78dbca74d 100644
--- a/docs/rules/valid-v-model.md
+++ b/docs/rules/valid-v-model.md
@@ -18,30 +18,30 @@ This rule reports `v-model` directives in the following cases:
This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
@@ -51,7 +51,6 @@ Nothing.
- [no-parsing-error]
-
[no-parsing-error]: no-parsing-error.md
## :mag: Implementation
diff --git a/docs/rules/valid-v-on.md b/docs/rules/valid-v-on.md
index 0f05d0cbb..c38c6c21e 100644
--- a/docs/rules/valid-v-on.md
+++ b/docs/rules/valid-v-on.md
@@ -14,25 +14,25 @@ This rule reports `v-on` directives in the following cases:
This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
@@ -42,7 +42,6 @@ Nothing.
- [no-parsing-error]
-
[no-parsing-error]: no-parsing-error.md
## :mag: Implementation
diff --git a/docs/rules/valid-v-once.md b/docs/rules/valid-v-once.md
index be3f5f425..f4d29de3d 100644
--- a/docs/rules/valid-v-once.md
+++ b/docs/rules/valid-v-once.md
@@ -12,19 +12,19 @@ This rule reports `v-once` directives in the following cases:
- The directive has that modifier. E.g. ``
- The directive has that attribute value. E.g. ``
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
diff --git a/docs/rules/valid-v-pre.md b/docs/rules/valid-v-pre.md
index 693a416ee..b38b3534b 100644
--- a/docs/rules/valid-v-pre.md
+++ b/docs/rules/valid-v-pre.md
@@ -12,19 +12,19 @@ This rule reports `v-pre` directives in the following cases:
- The directive has that modifier. E.g. ``
- The directive has that attribute value. E.g. ``
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
diff --git a/docs/rules/valid-v-show.md b/docs/rules/valid-v-show.md
index 3dfd20fa5..8e54db32c 100644
--- a/docs/rules/valid-v-show.md
+++ b/docs/rules/valid-v-show.md
@@ -14,19 +14,20 @@ This rule reports `v-show` directives in the following cases:
This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-:-1: Examples of **incorrect** code for this rule:
+
```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
@@ -36,7 +37,6 @@ Nothing.
- [no-parsing-error]
-
[no-parsing-error]: no-parsing-error.md
## :mag: Implementation
diff --git a/docs/rules/valid-v-text.md b/docs/rules/valid-v-text.md
index 5109126ae..86272c309 100644
--- a/docs/rules/valid-v-text.md
+++ b/docs/rules/valid-v-text.md
@@ -14,19 +14,19 @@ This rule reports `v-text` directives in the following cases:
This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
+
```html
-
+
+
+
+
+
+
+
+
+
```
+
## :wrench: Options
@@ -36,7 +36,6 @@ Nothing.
- [no-parsing-error]
-
[no-parsing-error]: no-parsing-error.md
## :mag: Implementation