1
I wonder how I could do to insert and then recognize in my code specific paragraph moments in typing in a textarea
.
This is my textarea.
I want to rescue the content of this textarea and insert it into another <div>
the same divides the paragraphs by inserting each of them in a <p>
.
So how would it look in the code:
<div class="wrapper">
<p>É claro que a adoção de políticas descentralizadoras ainda não demonstrou convincentemente que vai participar...</p>
<p>A nível organizacional, o novo modelo estrutural aqui preconizado nos obriga à análise da gestão inovadora da qual fazemos parte...</p>
<p>Assim mesmo, a hegemonia do ambiente político estende o alcance e a importância de alternativas às soluções ortodoxas...</p>
</div>
How to do this?
but then in blank stretches there is a hidden n?
– Nicolas S.
@Nicolass. in fact, the line break is a character, which can be represented by
"\n"
(has to be double quotes, single does not work)– Wallace Maxters