Skip to content

Commit 12eb3b4

Browse files
committed
Use underscores instead of hyphens in file names
Updated the file name sanitization logic to replace spaces with underscores instead of hyphens. This ensures consistency with the rest of the naming conventions.
1 parent f74403c commit 12eb3b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/SaveAllFormat/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ private static string GetExportFileName(string file, string formatName, string e
108108
newName = newName.Replace(ch.ToString(), "_");
109109
}
110110

111-
return newName.Replace(" ", "-");
111+
return newName.Replace(" ", "_");
112112
}
113113
}
114114
}

0 commit comments

Comments
 (0)