diff --git a/CHANGELOG.md b/CHANGELOG.md index 34b572b..ee85110 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ -### 0.7.1: 05 Jan 2017 +### 0.7.3: 06 Jan 2017 +* Change `force-align` to `force-aligned` in schema + +### 0.7.2: 05 Jan 2017 * Fix packaging failure ### 0.7.1: 04 Jan 2017 diff --git a/Settings.md b/Settings.md index ced16b9..24d6e3a 100644 --- a/Settings.md +++ b/Settings.md @@ -17,7 +17,7 @@ indent_handlebars | HTML | [Boolean] **format and indent `{{ indent_head_inner_html | HTML | [Boolean] **Indent elements within html <head> element.**
true indent_inner_html | HTML | [Boolean] **Indent `` and `` sections.**
false indent_scripts | HTML | [Boolean] **"keep", "separate", or "normal"**
"normal" -wrap_attributes | HTML | [String] **Wrap attributes to new lines. "auto", "force", "force-align" or "force-expand-multiline"**
"auto" +wrap_attributes | HTML | [String] **Wrap attributes to new lines. "auto", "force", "force-aligned" or "force-expand-multiline"**
"auto" wrap_attributes_indent_size | HTML | [Boolean] **Indent wrapped attributes to after N characters. Defaults to 'indent_size'.**
false unformatted | HTML | [Array<String>] **List of tags that should not be reformatted.**
["a", "abbr", "area", "audio", "b", "bdi", "bdo", "br", "button", "canvas", "cite", "code", "data", "datalist", "del", "dfn", "em", "embed", "i", "iframe", "img", "input", "ins", "kbd", "keygen", "label", "map", "mark", "math", "meter", "noscript", "object", "output", "progress", "q", "ruby", "s", "samp", "select", "small", "span", "strong", "sub", "sup", "svg", "template", "textarea", "time", "u", "var", "video", "wbr", "text", "acronym", "address", "big", "dt", "ins", "strike", "tt"] content_unformatted | HTML | [Array<String>] List of tags who's content should not be reformatted
["pre"] diff --git a/package.json b/package.json index e3cd67f..e678846 100755 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "beautify", "displayName": "beautify", "description": "Beautify code in place for VS Code", - "version": "0.7.2", + "version": "0.7.3", "publisher": "HookyQR", "engines": { "vscode": "^1.6.0" }, "categories": ["Other", "Languages", "Formatters"], diff --git a/schema/beautifyrc.json b/schema/beautifyrc.json index b8b7c6b..372880d 100755 --- a/schema/beautifyrc.json +++ b/schema/beautifyrc.json @@ -93,7 +93,7 @@ "description": "Wrap attributes to new lines. [HTML]", "type": "string", "default": "auto", - "enum": ["auto", "force", "force-align", "force-expand-multiline"] + "enum": ["auto", "force", "force-aligned", "force-expand-multiline"] }, "wrap_attributes_indent_size": { "description": "Indent wrapped attributes to after N characters. Defaults to 'indent_size'. [HTML]",