diff --git a/README.md b/README.md index b3bda9cf..c611eca7 100644 --- a/README.md +++ b/README.md @@ -82,3 +82,30 @@ is not indented, but is. 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). + +Place one newline between paragraphs (including list elements). Place three newlines before `

`, and two newlines before other headings. This does not apply when a nested heading follows the parent heading. +```html + + +

Place a newline above. + + +

Place two newlines above.

+ +

Placing one newline is OK here.

+ + +

Place two newlines above.

+``` +Use camel-case for variable names and "spaced" names for definitions, algorithms, etc. +```html +

A request has an associated +redirect mode,... +``` +```html +

Let redirectMode be request's redirect mode. +```