<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.1/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.1/angular-sanitize.min.js"></script>
<div ng-controller="MainCtrl">
<my-directive>
<child-directive ng-repeat="color in colors" color="{{color}}"></child-directive>
<p>
it's the end of the world as we know it and i feel fine.
Hello my name is {{ name }}
</p>
</my-directive>
</div>
<script type="text/ng-template" id="directive.html">
<h1>This is my main {{ name }}directive</h1>
<h2>Current selected is: {{ selected }} </h2>
<div ng-transclude></div>
</script>