Skip to content

Commit

Permalink
Explain rationale of HTML bracket formatting in HTML style guide. (#9631
Browse files Browse the repository at this point in the history
)

Backports PR #9629

**Commit 1:**
Explain rationale of HTML bracket formatting in HTML style guide.

* Original sha: a041d5f
* Authored by CJ Cenizal <[email protected]> on 2016-12-23T20:14:34Z
  • Loading branch information
elastic-jasper authored and cjcenizal committed Dec 23, 2016
1 parent cf8f336 commit 0c96c39
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions style_guides/html_style_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@

## Multiple attribute values

When a node has multiple attributes, each attribute including the first should be on its own line with a single indent.
When an element has multiple attributes, each attribute including the first should be on its own line with a single indent.
This makes the attributes easier to scan and compare across similar elements.

The closing bracket should be on its own line. This allows attributes to be shuffled and edited without having to move the bracket around. It also makes it easier to scan vertically and match opening and closing brackets.
The closing bracket should be on its own line. This allows attributes to be shuffled and edited without having to move the bracket around. It also makes it easier to scan vertically and match opening and closing brackets. This format
is inspired by the positioning of the opening and closing parentheses in [Pug/Jade](https://pugjs.org/language/attributes.html#multiline-attributes).

```
<div
Expand All @@ -17,7 +19,7 @@ The closing bracket should be on its own line. This allows attributes to be shuf
</div>
```

If the node doesn't have child notes, add the closing tag on the same line as the opening tag's closing bracket.
If the element doesn't have children, add the closing tag on the same line as the opening tag's closing bracket.

```
<div
Expand Down

0 comments on commit 0c96c39

Please sign in to comment.