0
I’m having a "certain" difficulty. I have a DIV that contains content that resembles a bill, all this content comes from an API (minus the div of course). However, I need you in the field DESCRIPTION
have more than 200 characters, it replicates all my current div (add it below) changing only the content of the description
let numbers = 'Ao contrário do que se acredita, Lorem Ipsum não é simplesmente um texto randômico. Com mais de 2000 anos, suas raízes podem ser encontradas em uma obra de literatura latina clássica datada de 45 AC. Richard McClintock, um professor de latim do Hampden-Sydney College na Virginia, pesquisou uma das mais obscuras palavras em latim, consectetur, oriunda de uma passagem de Lorem Ipsum, e, procurando por entre citações da palavra na literatura clássica, descobriu a sua indubitável origem. Lorem Ipsum vem das seções 1.10.32 e 1.10.33 do "de Finibus Bonorum et Malorum" (Os Extremos do Bem e do Mal), de Cícero, escrito em 45 AC. Este livro é um tratado de teoria da ética muito popular na época da Renascença. A primeira linha de Lorem Ipsum, "Lorem Ipsum dolor sit amet..." vem de uma linha na seção 1.10.32. O trecho padrão original de Lorem Ipsum, usado desde o século XVI, está reproduzido abaixo para os interessados. Seções 1.10.32 e 1.10.33 de "de Finibus Bonorum et Malorum" de Cicero também foram reproduzidas abaixo em sua forma exata original, acompanhada das versões para o inglês da tradução feita por H. Rackham em 1914.'
I thought of some way to do this, but I don’t know how to do it, so that all the current content remains and only the content of the description is changed
RESULT YOU WOULD LIKE (EXAMPLE)
<div class="result">
<!-- SEMPRE SERÁ IGUAL EM TODOS -->
<h1>TITULO</h1>
<p>Ao contrário do que se acredita, Lorem Ipsum não é simplesmente um texto randômico. Com mais de 2000 anos, suas raízes podem ser encontradas em uma obra de literatura latina clássica datada de 45 AC. Richard McClintock, um professor de latim do Hampden-Sydney College na Virginia, pesquisou uma das mais obscuras palavras em latim, consectetur, oriunda de uma passagem de Lorem Ipsum, e, procurando por entre citações da palavra na literatura clássica</p>
</div>
<div class="result">
<!-- SEMPRE SERÁ IGUAL EM TODOS -->
<h1>TITULO</h1>
<p>descobriu a sua indubitável origem. Lorem Ipsum vem das seções 1.10.32 e 1.10.33 do "de Finibus Bonorum et Malorum" (Os Extremos do Bem e do Mal), de Cícero, escrito em 45 AC. Este livro é um tratado de teoria da ética muito popular na época da Renascença. A primeira linha de Lorem Ipsum, "Lorem Ipsum dolor sit amet..."</p>
</div>
<div class="result">
<!-- SEMPRE SERÁ IGUAL EM TODOS -->
<h1>TITULO</h1>
<p>vem de uma linha na seção 1.10.32. O trecho padrão original de Lorem Ipsum, usado desde o século XVI, está reproduzido abaixo para os interessados. Seções 1.10.32 e 1.10.33 de "de Finibus Bonorum et Malorum" de Cicero também foram reproduzidas abaixo em sua forma exata original, acompanhada das versões para o inglês da tradução feita por H. Rackham em 1914.</p>
</div>
In the example, it would repeat the div 3 times, keeping the title, changing only the description, but this amount of times, would depend on how many characters are allowed by replica.
You can explain HTML better and give an example of what it should look like?
– Sergio
@Sergio I updated, see if you can understand better now
– Rafael Augusto
Then the contents of
p
comes from the right API? and if this content has more than 200 characters you want to repeat the blockdiv.result
? That part I didn’t quite understand– Sergio
@Rafaelaugusto, let me understand. Would you get an API text Ok? Will it be 1 text or N text? If it’s 1 text, you’d like to divide it into 200-character blocks?
– Bruno Rigolon
@Sergio Exactly, a text, which can contain 1 characters, 100 thousand characters
– Rafael Augusto
@Sergio Yes, if the text has more than 200 characters, I want to repeat the div.result block, keeping the title and changing only the text
– Rafael Augusto
But that leaves two equal blocks, one after the other, both with one
p
with over 200 characters, that’s it?– Sergio
@Sergio Exatamente
– Rafael Augusto
Ok, and this API returns an array with the various titles + right content?
– Sergio
@Sergio Sim, she returns the title, description and some other contents
– Rafael Augusto