I’m wondering if it’s possible to place a very long text, with line breaks and tabs, as a value
in appsettings.json.
I’m referring to something like this:
<code>"SomeKey": {
"AnotherKey": "This is a very long string value that I would like to
place in my appsettings.json file, with line breaks and tabs
so it will be readble.
Is there a way to achieve this?"
},
</code>
<code>"SomeKey": {
"AnotherKey": "This is a very long string value that I would like to
place in my appsettings.json file, with line breaks and tabs
so it will be readble.
Is there a way to achieve this?"
},
</code>
"SomeKey": {
"AnotherKey": "This is a very long string value that I would like to
place in my appsettings.json file, with line breaks and tabs
so it will be readble.
Is there a way to achieve this?"
},
Of course I can place the string without the line breaks and tabs, but then it won’t be readable and will cause a huge scrolling in any IDE.