Merge branch 'master' of github.com:Glavin001/atom-beautify

This commit is contained in:
Glavin Wiechert 2015-09-10 16:07:03 -03:00
commit 8854104f75
2 changed files with 66 additions and 0 deletions

View File

@ -940,6 +940,36 @@ End output with newline (Supported by JS Beautify)
}
```
#### [HTML - Extra liners](#html---extra-liners)
**Namespace**: `html`
**Key**: `extra_liners`
**Default**: `head,body,/html`
**Type**: `array`
**Supported Beautifiers**: [`JS Beautify`](#js-beautify)
**Description**:
List of tags (defaults to [head,body,/html] that should have an extra newline before them. (Supported by JS Beautify)
**Example `.jsbeautifyrc` Configuration**
```json
{
"html": {
"extra_liners": [
"head",
"body",
"/html"
]
}
}
```
#### [Java - Config Path](#java---config-path)
**Namespace**: `java`
@ -4880,6 +4910,36 @@ End output with newline (Supported by JS Beautify)
}
```
#### [HTML - Extra liners](#html---extra-liners)
**Namespace**: `html`
**Key**: `extra_liners`
**Default**: `head,body,/html`
**Type**: `array`
**Supported Beautifiers**: [`JS Beautify`](#js-beautify)
**Description**:
List of tags (defaults to [head,body,/html] that should have an extra newline before them. (Supported by JS Beautify)
**Example `.jsbeautifyrc` Configuration**
```json
{
"html": {
"extra_liners": [
"head",
"body",
"/html"
]
}
}
```
#### [JavaScript - Indent size](#javascript---indent-size)
**Namespace**: `js`

View File

@ -82,5 +82,11 @@ module.exports = {
type: 'boolean'
default: false
description: "End output with newline"
extra_liners:
type: 'array'
default: ['head', 'body', '/html']
items:
type: 'string'
description: "List of tags (defaults to [head,body,/html] that should have an extra newline before them."
}