curlie icon indicating copy to clipboard operation
curlie copied to clipboard

Incorrect handling of single quotes in JSON output

Open barlik opened this issue 4 years ago • 0 comments

Curlie is incorrectly handling single quotes in JSON output, where single quotes are removed from the output.

{
        "test": "Single 'quotes' inside 'this' string are gone"
}

becomes:

{
        "test": "Single quotes inside this string are gone"
}

barlik avatar Aug 05 '20 11:08 barlik