I would like to create a nested directive structure in Angular like
<aa>
<bb>
<cc></cc>
</bb>
<bb>
<cc></cc>
</bb>
</aa>
Each directive would print its content, so aa tags will print "A", bb tags will print "B" and cc tags will print "C". The problem is that the outer directive overwrites the inner ones so only the first directive is processed.
Here's a Fiddle. What am I missing?
ccspecializebb?