From d2f2d7a11b509f6249fa7b593cb13bdf94969d95 Mon Sep 17 00:00:00 2001 From: Matt Lauber Date: Tue, 7 Apr 2020 15:44:08 -0400 Subject: [PATCH] Update jsonstringify Operator.tid (#4348) --- .../tw5.com/tiddlers/filters/jsonstringify Operator.tid | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/editions/tw5.com/tiddlers/filters/jsonstringify Operator.tid b/editions/tw5.com/tiddlers/filters/jsonstringify Operator.tid index d9fd288b7..ff361450e 100644 --- a/editions/tw5.com/tiddlers/filters/jsonstringify Operator.tid +++ b/editions/tw5.com/tiddlers/filters/jsonstringify Operator.tid @@ -15,11 +15,11 @@ The following substitutions are made: |!Character |!Replacement | |`\` |`\\` | -|`"` |`\\"` | +|`"` |`\"` | |`\r` (carriage return) |`\\r` | |`\n` (line feed) |`\\n` | -|`\x08` (backpsace) |`\\b` | -|`\x0c` (formfield) |`\\f` | +|`\x08` (backspace) |`\\b` | +|`\x0c` (form field) |`\\f` | |`\t` (tab) |`\\t` | |Characters from 0x00 to 0x1f |`\\x##` where ## is two hex digits | |Characters from 0x80 to 0xffff |`\\u####` where #### is four hex digits |