I need to use ng-repeat (in AngularJS) to list all of the elements in an array.
The complication is that each element of the array will transform to ei
If you use ng > 1.2, here is an example of using ng-repeat-start/end without generating unnecessary tags:
{{elem.k}}
{{elem.v[0]}}
{{v}}
The important point: for tags used for ng-repeat-start and ng-repeat-end set ng-if="0", to let not be inserted in the page. In this way the inner content will be handled exactly as it is in knockoutjs (using commands in ), and there will be no garbage.