Fix upper case in authors' last name
This commit is contained in:
parent
308f680a87
commit
f9a9d36bd8
@ -20,7 +20,7 @@ namespace Txt2Bib.Records
|
||||
a = a.Trim();
|
||||
var s = a.Split(' ');
|
||||
return s.Length > 1 ?
|
||||
$"{s[1]} {s[0]}" : a;
|
||||
$"{s[1]} {s[0][0]}{s[0][1..].ToLowerInvariant()}" : a;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user