How would I render a dynamic definition list using AngularJS?
Example:
Data:
[ { key: \'a\', value: \'x\' }, { ke
A new feature which allows ng-repeat-start/ng-repeat-end was added in Angular 1.2.
With this feature, you can write your html like this:
{{i.key}} {{i.value}}
See this plnkr for a full working example.