HtmlHandler htmlHandler = new HtmlHandler();
String feedvalue = htmlHandler.getParsedText(rawFeedvalue);
AttributeInterface attr = (AttributeInterface) content.getAttribute(dest);
if (attr instanceof LinkAttribute) {
((LinkAttribute)attr).setText(feedvalue, this.getDefaultLangCode());
SymbolicLink link = new SymbolicLink();
link.setDestinationToUrl(feedvalue);
((LinkAttribute)attr).setSymbolicLink(link);
} else if (attr instanceof HypertextAttribute) {
if (feedvalue.trim().length() > 0) {
((HypertextAttribute)attr).setText(feedvalue, this.getDefaultLangCode());
} else {