mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Trying to fix issue with DCiname interop on Linux
This commit is contained in:
parent
e34391e9b0
commit
2df5c072b9
@ -431,8 +431,11 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
|
||||
|
||||
s = s.Replace("</Font> ", "</Font> ");
|
||||
s = s.Replace(" <Font ", " <Font ");
|
||||
s = s.Replace("\r\n<Font ", "<Font ");
|
||||
s = s.Replace("\r\n <Font ", "<Font ");
|
||||
s = s.Replace(Environment.NewLine + "<Font ", "<Font ");
|
||||
s = s.Replace(Environment.NewLine + " <Font ", "<Font ");
|
||||
s = s.Replace("</Font>\r\n", "</Font>");
|
||||
s = s.Replace("</Font>" + Environment.NewLine, "</Font>");
|
||||
s = s.Replace("><", "> <");
|
||||
s = s.Replace("</Font> </Text>", "</Font></Text>");
|
||||
|
Loading…
Reference in New Issue
Block a user