AngularJS Dynamic Directives inside ng-repeat
I'm trying to create directives dynamically inside an ng-repeat. I have a directive-writer that creates a number of other directives but the directive-writer doesn't seem to output the directive attributes. So the second set of directives are never rendered. See this Plunker for a full demo. In short I have this directive tag: <div ng-repeat="dir in directives" directive-writer directive-text="{{ dir.text }}" directive-type="{{ dir.directive }}"></div> Scope data: $scope.directives = [ { directive: 'one', text: 'I am One' }, { directive: 'two', text: 'I am Two' }, { directive: 'three', text: