Ignore extra whitespace around tokens.
This commit is contained in:
parent
37aa237209
commit
34a9821724
|
@ -8,7 +8,7 @@ pub fn replace_chars(input: &str) -> String {
|
|||
.lines()
|
||||
.filter_map(|line| {
|
||||
line.strip_prefix("#REPLACE")
|
||||
.and_then(|l| l.rsplit_once(' '))
|
||||
.and_then(|l| l.trim().rsplit_once(' '))
|
||||
.and_then(|(first, second)| {
|
||||
let length = std::cmp::min(first.len(), second.len());
|
||||
Some(Translation {
|
||||
|
|
Loading…
Reference in a new issue