forked from external/vscode-xml
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:
parent
a8ae771fd4
commit
60110f8d97
@ -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]);
|
||||||
|
Loading…
Reference in New Issue
Block a user