You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Understand difference between utf8_encode() and utf8_format(); only the latter has a chars argument (but utf8_format(quote = TRUE) broken? #33?), only the former has escapes
When abbreviating, never break escapes and honor wide characters
I don't remember the exact details but encode and format are meant to follow base R (encodeString and format). The former is for encoding control characters. The latter is for formatting a string immediately prior to printing.
utf8_encode(quote = NA)
, meaning "quotes if needed"utf8_encode(escapes = ...)
to support subtle quotes, perhaps passage of full open-close strings, and perhaps fixutf8_encode(escapes = "31")
colors escapes and backslashes/quotes differently #34 by offering an alternative optionutf8_encode()
andutf8_format()
; only the latter has achars
argument (bututf8_format(quote = TRUE)
broken? #33?), only the former hasescapes
For r-lib/pillar#563.
CC @patperry.
The text was updated successfully, but these errors were encountered: