I'm the caption.
@@ -174,12 +174,12 @@ category: Advices
*
### Selector
-```css_example
+``` css
figcaption:not(:first-child):not(:last-child)
```
### Test
-```html_example
+``` html
I'm the caption.
@@ -204,12 +204,12 @@ A `` should contain a valid email.
Otherwise you may annoy your users.
### Selector
-```css_example
+``` css
[href^="mailto"]
```
### Test
-```html_example
+``` html
Surpri-ise!
```
*/
@@ -230,12 +230,12 @@ A `` should contain a valid phone number.
Otherwise you may make your users to call anubody.
### Selector
-```css_example
+``` css
[href^="tel"]
```
### Test
-```html_example
+``` html
Who will I call?
```
*/
@@ -258,12 +258,12 @@ Obviously, a button role on a link is probably not so hard to move to an authent
*
### Selector
-```css_example
+``` css
a[role="button"]
```
### Test
-```html_example
+``` html
Submit
```
*/
@@ -292,12 +292,12 @@ You could use a `[title]`, for example.
*
### Selector
-```css_example
+``` css
[target$="blank"]
```
### Test
-```html_example
+``` html
New tab
```
*/
@@ -323,7 +323,7 @@ A link to a file should indicate the file format, the file size and if different
*
### Selector
-```css_example
+``` css
[download],
[href$=".pdf"]:not(link),
[href$=".doc"]:not(link),
@@ -346,7 +346,7 @@ A link to a file should indicate the file format, the file size and if different
```
### Test
-```html_example
+``` html
Wanna file?
```
*/
@@ -376,7 +376,7 @@ Some ARIA roles should be unique: at least `[main]`, `[search]`, `[banner]`, `[c
*
### Selector
-```css_example
+``` css
[role="main"] ~ [role="main"],
[role="search"] ~ [role="search"],
[role="banner"] ~ [role="banner"],
@@ -384,7 +384,7 @@ Some ARIA roles should be unique: at least `[main]`, `[search]`, `[banner]`, `[c
```
### Test
-```html_example
+``` html
```
@@ -412,13 +412,13 @@ A `[class]` or `[id]` containing search may carry the search ARIA `[role]`.
*
### Selector
-```css_example
+``` css
[id*="search"]:not([role="search"]),
[class*="search"]:not([role="search"])
```
### Test
-```html_example
+``` html