diff --git a/AssemblyVersion.cs b/AssemblyVersion.cs index 9330f65..4be1b85 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.449")] -[assembly: AssemblyFileVersion("3.0.1.449")] +[assembly: AssemblyVersion("3.0.1.450")] +[assembly: AssemblyFileVersion("3.0.1.450")] diff --git a/Core/Formatter.cs b/Core/Formatter.cs index 06b4a0f..11b43c7 100644 --- a/Core/Formatter.cs +++ b/Core/Formatter.cs @@ -423,7 +423,7 @@ namespace ScrewTurn.Wiki { // [], [[]] and [[] can occur when empty links are processed if(match.Value.Equals("[]") || match.Value.Equals("[[]]") || match.Value.Equals("[[]")) { - end += 2; + sb.Remove(match.Index, match.Length); match = LinkRegex.Match(sb.ToString(), end); continue; // Prevents formatting emtpy links }