Nothing
Code
artoo:::.resolve_charset("not-a-real-charset-zzz")
Condition
Error:
! Encoding "not-a-real-charset-zzz" is not available on this system.
i The host `iconv` provides no spelling of it or a known alias.
Code
artoo:::.to_target(x, "US-ASCII", "error")
Condition
Error:
! Cannot encode 1 value to "US-ASCII".
x Offending value: "™".
i Write to Dataset-JSON (UTF-8), or set `on_invalid`.
Code
artoo:::.to_target(bad, "UTF-8", "error")
Condition
Error:
! Cannot encode 1 value as UTF-8.
x Invalid bytes (hex-escaped): "c<e9>".
i Re-read the source with the correct `encoding`, or set `on_invalid`.
Code
artoo:::.to_target(x, "US-ASCII", "translit")
Condition
Error:
! Cannot encode 1 value to "US-ASCII" even after punctuation folding.
x Offending value: "Öztürk".
i Only smart punctuation has an ASCII fold; use `on_invalid = "fold"` to also strip accents, or write to Dataset-JSON (UTF-8).
Code
artoo:::.to_target(x, "US-ASCII", "fold")
Condition
Error:
! Cannot encode 1 value to "US-ASCII" even after ASCII folding.
x Offending value: "costs €100".
i The character has no standards-backed ASCII fold (ICU Latin-ASCII leaves it unmapped); write to Dataset-JSON (UTF-8), or set `on_invalid`.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.