case Link: {
String uriText = t.getContentText().replaceAll("\n","").trim();
try {
FreenetURI uri = new FreenetURI(uriText);
HTMLNode linkNode = new HTMLNode("a", "href", "/" + uri.toString());
HTMLNode linkText = new HTMLNode("abbr", "title", uri.toString(), uri.toShortString());
linkNode.addChild(linkText);
parent.addChild(linkNode);
} catch (MalformedURLException e) {
if (uriText.toLowerCase().startsWith("http")) {
try {