Hadley Wickham
Hadley Wickham
I'm preparing for a waldo release, so if you have specific ideas on what this should look like, I might be able to squeeze it in.
Minimal reprex: ``` r one ✔ No differences waldo::compare(1L, one, tolerance = 0) #> `class(old)` is absent #> `class(new)` is a character vector ('integer64') #> #> `old`: 1 #> `new`:...
This is going to require some fairly deep changes to be able to ignore the varying class attribute; there's a pretty strong assumption of atomic vector-ness in waldo.
Here's a somewhat more minimal reprex: ``` r library(readr) lines code description #> #> 1 1 "x\n2,-\n3,y" # OK: explicit quote works read_csv(path, quote = "", col_types = list()) #>...
Somewhat more minimal reprex: ``` r tab # A tibble: 3 × 1 #> x #> #> 1 a #> 2 b #> 3 c readr::read_csv(tab, col_select = 2, col_types...
Hmmm, interesting idea, and it would be easy enough to implement by calling `sample()` on the parsed vector. To me feels like it would be best exposed as an argument...
Looks like the link is generated here: https://github.com/r-lib/pkgdown/blob/main/R/build-home-index.R#L167 I think the simplest fix would be to modify `link_url()` to generate a mailto link if the url doesn't start with http...
pkgdown should support quarto vignettes soon (hopefully by the end of the week), so I think we should plan to make this an option, and then over the next few...
Hmmm, this will have to wait until either we require R 4.1, or duckdplyr fixes the underlying issue.
@krlmlr that would be helpful.