diff --git a/SabreHelper/Output.cs b/SabreHelper/Output.cs index 9f2c0a06..25ffdf05 100644 --- a/SabreHelper/Output.cs +++ b/SabreHelper/Output.cs @@ -60,16 +60,16 @@ namespace SabreTools.Helper string header = "\n" + "\n\n" + - "\t\n" + - "\t\t
\n" + - "\t\t\t" + HttpUtility.HtmlEncode(name) + "\n" + - "\t\t\t" + HttpUtility.HtmlEncode(description) + "\n" + - "\t\t\t" + HttpUtility.HtmlEncode(category) + "\n" + - "\t\t\t" + HttpUtility.HtmlEncode(version) + "\n" + - "\t\t\t" + HttpUtility.HtmlEncode(date) + "\n" + - "\t\t\t" + HttpUtility.HtmlEncode(author) + "\n" + - (forceunpack ? "\t\t\t\n" : "") + - "\t\t
\n"; + "\n" + + "\t
\n" + + "\t\t" + HttpUtility.HtmlEncode(name) + "\n" + + "\t\t" + HttpUtility.HtmlEncode(description) + "\n" + + "\t\t" + HttpUtility.HtmlEncode(category) + "\n" + + "\t\t" + HttpUtility.HtmlEncode(version) + "\n" + + "\t\t" + HttpUtility.HtmlEncode(date) + "\n" + + "\t\t" + HttpUtility.HtmlEncode(author) + "\n" + + (forceunpack ? "\t\t\n" : "") + + "\t
\n"; // Write the header out sw.Write((old ? header_old : header));