add -p argument to debug single paragraph, fix issues, sorry for the large commit...
Some checks failed
CI/CD Pipeline / test (push) Failing after 1m31s

This commit is contained in:
2024-02-15 11:40:02 +01:00
parent ddb2ebe5b7
commit 91fc2da6f7
11 changed files with 93 additions and 35 deletions

View File

@ -5,6 +5,10 @@ pub fn contains_without_unter(classifier_name: &str, instance_name: &str) -> boo
&& !instance_name.to_lowercase().contains("unter")
}
pub fn always_true(_: &str, _: &str) -> bool {
true
}
pub fn contains(classifier_name: &str, instance_name: &str) -> bool {
instance_name
.to_lowercase()