trim class from courses name (#9)

This commit is contained in:
Mylloon 2024-09-13 19:27:29 +02:00
parent b621436483
commit 1cab8ef246
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -90,10 +90,13 @@ pub async fn timetable(
[models::Category::Cours].into()
},
},
name: matches
name: Regex::new(r"[ -][ML][1-3]$").unwrap().replace(
matches
.name("name")
.unwrap()
.as_str().to_owned(),
.as_str(),
""
).to_string(),
professor: if let Some(raw_prof) = i.select(&sel_small).last() {
match raw_prof.inner_html() {
i if i.starts_with("<span") => None,