Add carriage returns and tab characters since those may be in some events

This commit is contained in:
Semisol 2023-07-04 13:55:15 +03:00 committed by GitHub
parent 3f8658ecc1
commit 21d71791c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
01.md
View File

@ -49,6 +49,8 @@ To prevent implementation differences from creating a different event ID for the
- The line break, `0x0A`, as `\n` - The line break, `0x0A`, as `\n`
- A double quote, `0x22`, as `\"` - A double quote, `0x22`, as `\"`
- A backslash, `0x5C`, as `\\` - A backslash, `0x5C`, as `\\`
- A carriage return, `0x0D`, as `\r`
- A tab character, `0x09`, as `\t`
- UTF-8 should be used for encoding. - UTF-8 should be used for encoding.
## Communication between clients and relays ## Communication between clients and relays