I know that to list in html code is:
<ol>
<li>Este será el 1. </li>
<li> Este será el 2. Y así sucesivamente. </li>
</ol>
The fact is that I need it in a textarea or in some way. I need to make the user answer a question and list their answers, but the user does not put "1-" but it automatically comes out.
NOTE:
- The response will be sent in a POST form to be saved later in the BBDD
-
If the answer is already answered, it is loaded like this, you can edit it again
<div ng-repeat="resp in respuestas"> {{resp}} </div>