Given a directive (container1) with transclude and an isolated scope, when the directive is linked then I have these scopes:
container1
Scope 004
you can manually transclude the child element
link: function(scope, element, attrs, ctrl, transclude) { transclude(scope, function(clone, scope) { element.find('.transclude-placeholder').append(clone); }); }