Replace single slash with double slash in split card names when importing with TxtDeckImporter.java

This commit is contained in:
Evan Murawski 2019-02-02 18:41:56 -05:00
parent 91a3328907
commit ec02774818

View file

@ -97,9 +97,8 @@ public class TxtDeckImporter extends PlainTextDeckImporter {
if (lineName.contains("//") && !lineName.contains(" // ")) {
lineName = lineName.replace("//", " // ");
}
if (lineName.contains(" / ")) {
lineName = lineName.replace(" / ", " // ");
}
lineName = lineName.replaceFirst("(?<=[^/])\\s*/\\s*(?=[^/])", " // ");
if (IGNORE_NAMES.contains(lineName) || IGNORE_NAMES.contains(lineNum)) {
return;
}