File tree 1 file changed +11
-12
lines changed
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
403
403
! >
404
404
! Remove the escape characters from a JSON string and return it.
405
405
!
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
418
417
419
418
subroutine unescape_string (str_in , str_out , error_message )
420
419
You can’t perform that action at this time.
0 commit comments