From e1d41f602521aff4a88935eaec7535c2d15d909a Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Sun, 28 Jan 2018 12:17:06 -0500 Subject: [PATCH] Add NewLine After Self-Closing Tags #120 --- src/formatting/formatters/v2-xml-formatter.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/formatting/formatters/v2-xml-formatter.ts b/src/formatting/formatters/v2-xml-formatter.ts index 52b5926..8f60585 100644 --- a/src/formatting/formatters/v2-xml-formatter.ts +++ b/src/formatting/formatters/v2-xml-formatter.ts @@ -112,12 +112,15 @@ export class V2XmlFormatter implements XmlFormatter { // exiting StartTag or StartTag.StartTagName, entering Text else if ((location === Location.StartTag || location === Location.StartTagName) && cc === ">") { - // if this was a self-closing tag, we need to decrement the indent level + // if this was a self-closing tag, we need to decrement the indent level and add a newLine if (pc === "/") { indentLevel--; + output += `>${options.newLine}`; } - output += ">"; + else { + output += ">"; + } lastNonTextLocation = location; location = Location.Text;