<a href="<#User.AccessLink#>"><#User.AccessLink#></a>
<a href="<#User.AccessLink#>"><#User.AccessLink#></a>
UPDATE!!!
dataProcessor.toDataFormat = function(html, fixForBody){
//find all tag-elements
var matches = html.match(/&#{0,1}[a-z0-9]+;/ig);
//go through each match and replace the encoded characters
if (matches!=null) {
for (match in matches) {
replacedString=matches[match];
replacedString = matches[match].replace(/>/g,'>');
replacedString = replacedString.replace(/</g,'<');
replacedString = replacedString.replace(/&/g,'&');
html = html.replace(matches[match],replacedString);
}
}
return html;
};