more CSV stuff
This commit is contained in:
parent
e9e2256e82
commit
78d7972d28
5 changed files with 109 additions and 10 deletions
|
@ -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());
|
||||
|
|
Reference in a new issue