From 2216613c8382071924a84de23721c81b06642ca5 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 28 Apr 2016 20:25:28 -0700 Subject: [PATCH] My spacing was always off --- SabreHelper/Output.cs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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));