more CSV stuff

This commit is contained in:
qvalentin 2022-05-15 11:37:46 +02:00
parent e9e2256e82
commit 78d7972d28
Signed by: qvalentin
GPG key ID: C979FA1EAFCABF1C
5 changed files with 109 additions and 10 deletions

View file

@ -18,6 +18,10 @@ public class CustomTagMatcher extends TagMatcher {
this.tagName = name;
}
public Pattern getRegex() {
return regex;
}
@Override
public OptionalTag ifMatches(LinkUrl linkUrl) {
Matcher matcher = regex.matcher(linkUrl.toString());