fix(XmlFormatter): correct split namespace formatting

When namespaces are being split, do not keep the indent after a
self-closed element.

fixes #46
This commit is contained in:
Josh Johnson 2016-03-15 14:38:39 -04:00
parent a8ae771fd4
commit 60110f8d97
1 changed files with 8 additions and 3 deletions

View File

@ -83,10 +83,15 @@ export class XmlFormatter {
} }
// <elm /> // <elm />
else if (parts[i].search(/\/>/) > -1) { else if (parts[i].search(/\/>/) > -1 && (!this.splitNamespaces || parts[i].search(/xmlns\:/) == -1)) {
output = (!inComment) ? output += this._getIndent(level, parts[i]) : output += parts[i]; output = (!inComment) ? output += this._getIndent(level, parts[i]) : output += parts[i];
} }
// xmlns />
else if (parts[i].search(/\/>/) > -1 && parts[i].search(/xmlns\:/) > -1 && this.splitNamespaces) {
output = (!inComment) ? output += this._getIndent(level--, parts[i]) : output += parts[i];
}
// <?xml ... ?> // <?xml ... ?>
else if (parts[i].search(/<\?/) > -1) { else if (parts[i].search(/<\?/) > -1) {
output += this._getIndent(level, parts[i]); output += this._getIndent(level, parts[i]);