private void applyAttributeMapping(Element element, Object target, Content content) throws ApsSystemException {
String source = element.getAttributeValue("source");
String dest = element.getAttributeValue("dest");
String rawFeedvalue = this.extractValue(source, target);
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);