diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-29 07:26:19 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-29 07:26:19 -0700 |
commit | b3a49b161a6192d4b8c574f0cd7f9b16567cd834 (patch) | |
tree | 34d2b8aae7c999630bf3dc46fad6e36d24897b53 /lib.c | |
parent | c8f12ee44d226924b89cdd764b65a5f6a4030b81 (diff) | |
download | txr-b3a49b161a6192d4b8c574f0cd7f9b16567cd834.tar.gz txr-b3a49b161a6192d4b8c574f0cd7f9b16567cd834.tar.bz2 txr-b3a49b161a6192d4b8c574f0cd7f9b16567cd834.zip |
json: escape slash in </ sequence
* lib.c (out_json_str): When the < character is seen, if the
lookahead character is /, output the < and a backslash to
escape the /.
* txr.1: Moved description of special JSON output handling
under tojson, and described the above escaping there also.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12592,6 +12592,11 @@ static void out_json_str(val str, val out) case '\t': put_string(lit("\\t"), out); break; + case '<': + put_char(chr(ch), out); + if (*cstr == '/') + put_char(chr('\\'), out); + break; case 0xDC00: put_string(lit("\\u0000"), out); break; |