David Kaplan
David Kaplan
I have cut out pieces of my document step by step to identify the offending part of the document. The problem is caused by using `kableExtra` to generate a table....
More specifically, the following `.qmd` file: ````markdown --- format: revealjs --- ## kableextra ```{r} #| include: false library(kableExtra) ``` ::: {#tbl-kbex} ```{r} #| echo: false kbl(data.frame(id=1:3,names=letters[1:3])) ``` A table. :::...
Thanks, will give those a shot.
FYI, I tried `xfun::browser_print()` and it does not show the javascript exception, but the title page in the print does not look correct and the pages are always in portrait...
Sorry for the slow response, but I was occupied with the class. No, this was just using straight up `plot(sfobject)`. We tried using `ggplot` and `tmap` also. `tmap` seemed to...
And the data used can be found here: ```r download.file("https://www.davidmkaplan.fr/classes/2023-plan-formation-ird/data.zip","data.zip") unzip("data.zip") library(sf) sfobject = st_read("data/zaf/gadm36_ZAF_0.shp") ````
I tried the proposed fix and the code now works for me.
I have created a pull request to fix this bug.
> Also you can add this to your description: > > ``` > Additional_repositories: https://ropensci.r-universe.dev > ``` > > That should allow CRAN as well. So from this, am I...
Getting back to the original subject of this issue report, it would still be really nice to have some simpler way of extracting the names of layers and variables to...