if (l.startsWith("a ") | l.startsWith("an ")) {
String rest = normed.substring(normed.indexOf(" ") + 1);
if (TweetSyntax.HASHTAG_PATTERN.matcher(rest).matches()) {
try {
context.handleCompletedTriple(new URIReference(RDF.TYPE), new Hashtag(rest.substring(1)));
} catch (HandlerException e) {
throw new MatcherException(e);
}
} else {
String rl = rest.toLowerCase();