T-Dark letter cases implemented

pull/10/head
ondra05 2022-05-02 23:40:42 +02:00
parent 77dc87901e
commit e10a6c8c9d
1 changed files with 28 additions and 4 deletions

View File

@ -596,12 +596,36 @@ impl<'source> Parser<'source> {
}
/// Perform lang -> script substitution if in T-Dark block
fn tdark_subst(&self, string: String) -> String {
fn tdark_subst(&self, mut string: String) -> String {
if self.tdark {
string.replace("lang", "script")
} else {
string
if let Some(pos) = string.to_lowercase().find("lang") {
let range = pos..pos + 4;
let mut count_upper = 0_u8;
string.replace_range(
range.clone(),
&(string[range]
.chars()
.zip("scri".chars())
.map(|(lc, sc)| {
if lc.is_uppercase() {
count_upper += 1;
sc.to_ascii_uppercase()
} else {
sc.to_ascii_lowercase()
}
})
.collect::<String>()
+ match count_upper {
0 | 1 => "pt",
2 if rand::random() => "Pt",
2 => "pT",
_ => "PT",
}),
)
}
}
string
}
}