Skip to content

Commit

Permalink
added more illegal characters
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwai committed May 13, 2022
1 parent 3fa1173 commit 6b21c67
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public class Main {
private static final String GIT_FOLDER = "git_folder";

private static final List<Character> BEGINNING_ILLEGAL_CHARACTERS =
List.of('#', '!', '$', '&', '>', '<', '[', '|', '@', '/', '.', ':', '-', ',');
List.of('#', '!', '$', '&', '>', '<', '[', '|', '@', '/', '.', ':', '-', ',', '?',
'_');

private static final List<Function<String, String>> REPLACE_FUNCTIONS = List.of(
s -> s.replace("\t", " "),
Expand Down

0 comments on commit 6b21c67

Please sign in to comment.