You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,33 @@ is.
83
83
84
84
End tags may be included (if done consistently) and attributes may be quoted (using double quotes), though the prevalent theme is to omit end tags and not quote attributes (unless they contain a space).
85
85
86
+
Place one newline between paragraphs (including list elements). Place three newlines before `<h2>`, and two newlines before other headings. This does not apply when a nested heading follows the parent heading.
87
+
```html
88
+
<ul>
89
+
<li><p>Do not place a newline above.
90
+
91
+
<li><p>Place a newline above.
92
+
</ul>
93
+
94
+
<p>Place a newline above.
95
+
96
+
97
+
<h3>Place two newlines above.</h3>
98
+
99
+
<h4>Placing one newline is OK here.</h4>
100
+
101
+
102
+
<h4>Place two newlines above.</h4>
103
+
```
104
+
Use camel-case for variable names and "spaced" names for definitions, algorithms, etc.
0 commit comments