Skip to content

Commit b167efa

Browse files
committed
Removed blockquotes
1 parent d3bdecd commit b167efa

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ Finally, properties are what give the selected elements of a rule declaration th
6868

6969
### Formatting
7070

71-
- [2.1.1](#2.1.1) <a name='2.1.1'></a> Use soft tabs (4 spaces) for indentation.
72-
> This improves readability and keeps the space uniform
71+
- [2.1.1](#2.1.1) <a name='2.1.1'></a> Use soft tabs (4 spaces) for indentation. This improves readability and keeps the space uniform
7372

7473
```sass
7574
// bad
@@ -83,8 +82,7 @@ Finally, properties are what give the selected elements of a rule declaration th
8382
}
8483
```
8584

86-
- [2.1.2](#2.1.2) <a name='2.1.2'></a> Use classes for all selectors.
87-
> Ids are reserved for E2E testing and data arguments are for JS libraries
85+
- [2.1.2](#2.1.2) <a name='2.1.2'></a> Use classes for all selectors. Ids are reserved for E2E testing and data arguments are for JS libraries
8886

8987
```sass
9088
// bad
@@ -102,8 +100,7 @@ Finally, properties are what give the selected elements of a rule declaration th
102100
}
103101
```
104102

105-
- [2.1.3](#2.1.3) <a name='2.1.3'></a> Avoid using tag selectors.
106-
> Tag selectors come at a small performance penalty
103+
- [2.1.3](#2.1.3) <a name='2.1.3'></a> Avoid using tag selectors. Tag selectors come at a small performance penalty
107104

108105
```sass
109106
// bad
@@ -117,8 +114,7 @@ h3 {
117114
}
118115
```
119116

120-
- [2.1.4](#2.1.4) <a name='2.1.4'></a> When using multiple selectors in a rule declaration, give each selector its own line.
121-
> This way its much easier to find selectors when scanning the document
117+
- [2.1.4](#2.1.4) <a name='2.1.4'></a> When using multiple selectors in a rule declaration, give each selector its own line. This way its much easier to find selectors when scanning the document
122118

123119
```sass
124120
// bad

0 commit comments

Comments
 (0)