diff --git a/Core/Formatter.cs b/Core/Formatter.cs index 39b577e..34e26bb 100644 --- a/Core/Formatter.cs +++ b/Core/Formatter.cs @@ -262,16 +262,6 @@ namespace ScrewTurn.Wiki { match = ExtendedUpRegex.Match(sb.ToString(), end); } - /*match = UpRegex.Match(sb.ToString()); - while(match.Success) { - if(!IsNoWikied(match.Index, noWikiBegin, noWikiEnd, out end)) { - sb.Remove(match.Index, match.Length); - sb.Insert(match.Index, UpReplacement); - } - ComputeNoWiki(sb.ToString(), ref noWikiBegin, ref noWikiEnd); - match = UpRegex.Match(sb.ToString(), end); - }*/ - if(!bareBones) { NamespaceInfo ns = DetectNamespaceInfo(current); match = SpecialTagRegex.Match(sb.ToString()); @@ -304,7 +294,6 @@ namespace ScrewTurn.Wiki { sb.Insert(match.Index, @"
"); break; case "BR": - //if(!AreSingleLineBreaksToBeProcessed()) sb.Insert(match.Index, "
");
for(int i = 0; i < hPos.Count; i++) {
- //Debug.WriteLine(i.ToString() + " " + hPos[i].Index.ToString() + ": " + hPos[i].Level);
switch(hPos[i].Level) {
case 1:
break;