Plunker Link
I have a element which I would like to bind html to it.
That works.
Best solution what I've found! I copied it and it work's exactly as I needed. Thanks, thanks, thanks ...
in directive link function I have
app.directive('element',function($compile){
.
.
var addXml = function(){
var el = $compile(' ')($scope);
$scope.renderingElement = el.html();
}
.
.
and in directive template: