Corrected indentation

This commit is contained in:
Stefanos A. 2013-11-10 09:20:54 +01:00
parent 5aad11f6ee
commit 089c108ea0
2 changed files with 26663 additions and 26656 deletions

View file

@ -81,6 +81,13 @@ namespace Bind
xslt.Transform(doc, null, sw);
Text = sw.ToString().Split(new char[] { '\r', '\n' },
StringSplitOptions.RemoveEmptyEntries);
// Remove unecessary whitespace
// Indentation is handled by BindStreamWriter
for (int i = 0; i < Text.Length; i++)
{
Text[i] = Text[i].Trim();
}
return Text;
}
}

File diff suppressed because it is too large Load diff