File tree Expand file tree Collapse file tree 1 file changed +11
-12
lines changed Expand file tree Collapse file tree 1 file changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -403,18 +403,17 @@ end subroutine escape_string
403403! >
404404! Remove the escape characters from a JSON string and return it.
405405!
406- ! The escaped characters are denoted by the '\' character:
407- ! ````
408- ! '\"' quotation mark
409- ! '\\' reverse solidus
410- ! '\/' solidus
411- ! '\b' backspace
412- ! '\f' formfeed
413- ! '\n' newline (LF)
414- ! '\r' carriage return (CR)
415- ! '\t' horizontal tab
416- ! '\uXXXX' 4 hexadecimal digits
417- ! ````
406+ ! The escaped characters are denoted by the `\` character:
407+ !
408+ ! * `\"` - quotation mark
409+ ! * `\\` - reverse solidus
410+ ! * `\/` - solidus
411+ ! * `\b` - backspace
412+ ! * `\f` - formfeed
413+ ! * `\n` - newline (LF)
414+ ! * `\r` - carriage return (CR)
415+ ! * `\t` - horizontal tab
416+ ! * `\uXXXX` - 4 hexadecimal digits
418417
419418 subroutine unescape_string (str_in , str_out , error_message )
420419
You can’t perform that action at this time.
0 commit comments