Skip to content

Commit cdcf6d9

Browse files
Update CHANGELOG.md
1 parent c6a0aa0 commit cdcf6d9

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,41 @@
55
- Rename `head-req-meta` to `head-meta-charset`
66
- Adds a description of the rules
77
- Adds `htmlacademy/charset-position`
8+
```html
9+
<head>
10+
<meta charset="utf-8">
11+
<title>Title</title>
12+
</head>
13+
```
14+
815
- Adds `form-action-attribute`
16+
```html
17+
<form action="https://echo.htmlacademy.ru"></form>
18+
```
19+
920
- Adds `img-svg-req-dimensions`
21+
```html
22+
<img src="images/image.jpg" width="500" height="300" alt="">
23+
24+
<svg width="200" height="100" viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg">
25+
<rect x="0" y="0"></rect>
26+
</svg>
27+
```
28+
1029
- Adds `no-double-br`
30+
```html
31+
<p>Lorem ipsum <br>dolor <br>sit amet.</p>
32+
```
33+
34+
```html
35+
<p>Lorem ipsum <br>dolor sit amet.</p>
36+
<p><br>sit amet.</p>
37+
```
38+
1139
- Adds `a-target-rel`
40+
```html
41+
<a href="https://htmlacademy.pro" target="_blank" rel="noreferrer noopener">Link</a>
42+
```
1243

1344
## 1.0.2
1445
- removes `attr-value-style`;

0 commit comments

Comments
 (0)