committing latest MLMStripper

This commit is contained in:
2020-02-11 20:09:58 -05:00
parent 840d0432f4
commit 496f847ee2
2 changed files with 6 additions and 1 deletions

Binary file not shown.

View File

@@ -96,6 +96,11 @@ namespace MLMStripper
contents.Add("end:");
}
static string CleanLineByLine(string Line)
{
return Line.Replace("{{{SINGLE-QUOTE}}}","'");
}
static void WriteOutFile()
{
@@ -118,7 +123,7 @@ namespace MLMStripper
using (IO.StreamWriter sw = new IO.StreamWriter(fs, Encoding.UTF8))
{
foreach (string line in ReadInLines)
sw.WriteLine(line);
sw.WriteLine(CleanLineByLine(line));
sw.Flush();
}