2
I’m building a file JSON
where I intend to add several lines, as shown in the code exemplified below:
[
{
"Numero":"0001",
"Textos":[
{
"letra":"Meu Jesus maravilhoso és,
minha inspiração a prosseguir,
e mesmo quando tudo não vai bem
eu continuo olhando para ti...",
"titulo":"Aos pés da cruz"
}
]
}
]
However, in doing so, I always get the message of invalid characters.
From what I’ve researched, JSON
does not support multi-line usage. Still, there is some way to create the template reported in the above code?
In what programming language are you trying? Could you post an example?
– Allan Andrade