Minor fix for utf-8 whitespace

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@381 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2011-04-02 17:54:54 +00:00
parent 5e48e5ee24
commit 06825aae78

View File

@ -289,6 +289,7 @@ namespace Nikse.SubtitleEdit.Forms
test = test.Replace("\\u0026lt;", "<");
test = test.Replace("\\u0026gt;", ">");
test = test.Replace("\\u003d", "=");
test = test.Replace("\\u200b", string.Empty);
test = test.Replace("\\\"", "\"");
test = test.Replace(" <br/>", Environment.NewLine);
test = test.Replace("<br/>", Environment.NewLine);