I want to make my JSON file more readable. To do this I want to add a new line but without modifying any content.
For example, with this file :
{
"texte": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ?",
}
I want to have something like :
{
"texte":
"xxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxx",
}
Is it a way that I can do this ? Thank you for your help,
Joss