"items":{
"item1":"here is some text that should be paragraph1",
"item2":"here is some text that should be paragraph2",
"item3":"here is some text that should be paragraph3",
}
Need to have two parts for this:
1. as a separated paragraphs, that are shown on the page
<section class="col-xs-10 col-sm-11 col-md-11" ng-repeat="x in items">
<h3>Item {{$index+1}}</h3>
<p>{{x}}</p>
</section>
<textarea>
for edit.Is it possible - or probably better to put the items together and then split?
Solved with adding each paragraph as a textarea and hide if empty.