Merge pull request #3561 from peteruithoven/yaml-utf

[yaml/en] UTF-8/16/32 characters need to be encoded
This commit is contained in:
Divay Prakash 2019-08-03 00:40:48 +05:30 committed by GitHub
commit d84b88b425
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,6 +38,8 @@ however: 'A string, enclosed in quotes.'
'Keys can be quoted too.': "Useful if you want to put a ':' in your key."
single quotes: 'have ''one'' escape pattern'
double quotes: "have many: \", \0, \t, \u263A, \x0d\x0a == \r\n, and more."
# UTF-8/16/32 characters need to be encoded
Superscript two: \u00B2
# Multiple-line strings can be written either as a 'literal block' (using |),
# or a 'folded block' (using '>').