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:
<dl>
<dt ng-repeat-start="i in items">{{i.key}}</dt>
<dd ng-repeat-end>{{i.value}}</dd>
</dl>
See this plnkr for a full working example.