diff --git a/AssemblyVersion.cs b/AssemblyVersion.cs index 9bd7c0c..218855e 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.0.340")] -[assembly: AssemblyFileVersion("3.0.0.340")] +[assembly: AssemblyVersion("3.0.0.341")] +[assembly: AssemblyFileVersion("3.0.0.341")] diff --git a/Core/Formatter.cs b/Core/Formatter.cs index b548366..6818a85 100644 --- a/Core/Formatter.cs +++ b/Core/Formatter.cs @@ -151,11 +151,11 @@ namespace ScrewTurn.Wiki { } // Strip out all comments - match = CommentRegex.Match(sb.ToString()); - while(match.Success) { - sb.Remove(match.Index, match.Length); - match = CommentRegex.Match(sb.ToString(), match.Index + 1); - } + //match = CommentRegex.Match(sb.ToString()); + //while(match.Success) { + // sb.Remove(match.Index, match.Length); + // match = CommentRegex.Match(sb.ToString(), match.Index + 1); + //} // Remove empty NoWiki and NoBr tags sb.Replace("", "");