You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//HACK: Replace - dashes with spaces to avoid a bug that occurs in Save In... with lines that have dashes after the path. Remove this if and when that bug is fixed.
61
-
stringhackName="";
62
-
63
-
if(!string.IsNullOrEmpty(Name))
64
-
{
65
-
hackName=Name.Replace('-',' ');
66
-
}
67
-
68
-
stringhackComment="";
69
-
70
-
if(!string.IsNullOrEmpty(Comment))
71
-
{
72
-
hackComment=Comment.Replace('-',' ');
73
-
}
74
-
75
60
if(IsSeperator)
76
61
{
77
62
stream.WriteLine("---");
@@ -80,7 +65,7 @@ public void BuildOutput(StringWriter stream, Settings settings)
0 commit comments