mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Fix unneeded spaces - "¡ " -> "¡" - thx Alfonso :)
This commit is contained in:
parent
3c1f83f617
commit
61722b7cc0
@ -1208,10 +1208,13 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
if (p.Text.Contains(" ?"))
|
||||
p.Text = p.Text.Replace(" ?", "?");
|
||||
}
|
||||
|
||||
|
||||
while (p.Text.Contains("¿ "))
|
||||
p.Text = p.Text.Replace("¿ ", "¿");
|
||||
|
||||
while (p.Text.Contains("¡ "))
|
||||
p.Text = p.Text.Replace("¡ ", "¡");
|
||||
|
||||
if (p.Text.Contains("! </i>" + Environment.NewLine))
|
||||
p.Text = p.Text.Replace("! </i>" + Environment.NewLine, "!</i>" + Environment.NewLine);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user