From bc3a5fa51ff2413b7741fff21ec48e5c06c08305 Mon Sep 17 00:00:00 2001 From: Dario Solera Date: Thu, 22 Oct 2009 15:20:55 +0000 Subject: [PATCH] Fixed regression introduced with fix to #305. --- AssemblyVersion.cs | 4 ++-- Core/Formatter.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AssemblyVersion.cs b/AssemblyVersion.cs index cdf8b87..5cab8fb 100644 --- a/AssemblyVersion.cs +++ b/AssemblyVersion.cs @@ -16,5 +16,5 @@ using System.Reflection; // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("3.0.1.415")] -[assembly: AssemblyFileVersion("3.0.1.415")] +[assembly: AssemblyVersion("3.0.1.416")] +[assembly: AssemblyFileVersion("3.0.1.416")] diff --git a/Core/Formatter.cs b/Core/Formatter.cs index e0fa366..e8dcadf 100644 --- a/Core/Formatter.cs +++ b/Core/Formatter.cs @@ -184,10 +184,10 @@ namespace ScrewTurn.Wiki { sb.Remove(match.Index, match.Length); string content = match.Value.Substring(2, match.Length - 4); dummy = new StringBuilder(); - dummy.Append("
");
+					dummy.Append("
");
 					// IE needs \r\n for line breaks
 					dummy.Append(EscapeWikiMarkup(content).Replace("\n", "\r\n"));
-					dummy.Append("
"); + dummy.Append("
"); sb.Insert(match.Index, dummy.ToString()); } ComputeNoWiki(sb.ToString(), ref noWikiBegin, ref noWikiEnd);