Skip to content

Commit

Permalink
Don't evaluate the encoding chunk
Browse files Browse the repository at this point in the history
as it causes a vignette building failure on UCRT builds
  • Loading branch information
jimhester committed Nov 29, 2021
1 parent f5602cb commit e72a281
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vignettes/locales.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ All readr functions yield strings encoded in UTF-8. This encoding is the most li

The following code illustrates the problems with encodings:

```{r}
<!-- not currently evaluating this chunk due to https://github.com/tidyverse/readr/issues/1337 --!>
```{r, eval = FALSE}
library(stringi)
x <- "Émigré cause célèbre déjà vu.\n"
y <- stri_conv(x, "UTF-8", "latin1")
Expand Down

0 comments on commit e72a281

Please sign in to comment.