Remove leftover <u></u> | <u> </u> (src/Logic/Forms/RemoveTextForHI.cs)

This commit is contained in:
ivandrofly 2015-07-30 07:40:26 +01:00
parent 4b99e4052b
commit dc75a00784

View File

@ -456,6 +456,8 @@ namespace Nikse.SubtitleEdit.Logic.Forms
text = text.Replace("<i> </i>", " ");
text = text.Replace("<b></b>", string.Empty);
text = text.Replace("<b> </b>", " ");
text = text.Replace("<u></u>", string.Empty);
text = text.Replace("<u> </u>", " ");
text = RemoveEmptyFontTag(text);
text = text.Replace(" ", " ").Trim();
text = RemoveColon(text);