Ignore extra whitespace around tokens.

This commit is contained in:
Lyle Mantooth 2024-02-04 08:53:10 -05:00
parent 37aa237209
commit 34a9821724
Signed by: IslandUsurper
GPG key ID: 6DB52EAE123A5789

View file

@ -7,8 +7,8 @@ pub fn replace_chars(input: &str) -> String {
let trs: Vec<Translation<'_>> = input let trs: Vec<Translation<'_>> = input
.lines() .lines()
.filter_map(|line| { .filter_map(|line| {
line.strip_prefix("#REPLACE ") line.strip_prefix("#REPLACE")
.and_then(|l| l.rsplit_once(' ')) .and_then(|l| l.trim().rsplit_once(' '))
.and_then(|(first, second)| { .and_then(|(first, second)| {
let length = std::cmp::min(first.len(), second.len()); let length = std::cmp::min(first.len(), second.len());
Some(Translation { Some(Translation {