diff --git a/src/Logic/SubtitleFormats/FlashXml.cs b/src/Logic/SubtitleFormats/FlashXml.cs index 44a65bfd2..b20db1880 100644 --- a/src/Logic/SubtitleFormats/FlashXml.cs +++ b/src/Logic/SubtitleFormats/FlashXml.cs @@ -75,7 +75,7 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats foreach (Paragraph p in subtitle.Paragraphs) { XmlNode paragraph = xml.CreateElement("p"); - string text = HtmlUtil.RemoveHtmlTags(p.Text); + string text = HtmlUtil.RemoveHtmlTags(p.Text, true); paragraph.InnerText = text; paragraph.InnerXml = "" + paragraph.InnerXml.Replace(Environment.NewLine, "
") + "]]>";