JSON does not allow real line-breaks. You need to replace all the line breaks with
.
eg:
"first line
second line"
can saved with:
"first line
second line"
Note:
for Python
, this should be written as:
"first line\nsecond line"
where \
is for escaping the backslash, otherwise python will treat
as
the control character "new line"
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…