~~ lineWidth: 80 ~~
== should support single quote strings ==
'te\'st'
[expect]
"te'st"
== should support double quote strings ==
"test\"test"
[expect]
"test\"test"
== should maintain escaped characters ==
"asdf\tasdf\f\b\u0020\r\n\r\r"
[expect]
"asdf\tasdf\f\b\u0020\r\n\r\r"
== should use unicode standard annex #11 rules for line width ==
{
"a": ["대충 한국어로 아무 말이나 적고 있습니다. '아무말'은 표준국어대사전에"],
"b": ["대충 한국어로 아무 말이나 적고 있습니다. '아무말'은 표준국어대사전에 "]
}
[expect]
{
"a": ["대충 한국어로 아무 말이나 적고 있습니다. '아무말'은 표준국어대사전에"],
"b": [
"대충 한국어로 아무 말이나 적고 있습니다. '아무말'은 표준국어대사전에 "
]
}