Skip to content
Discussion options

You must be logged in to vote

First, This happens also is you use html format. This means that is not a revealjs problem.

Then, it happens if you only load the pubh package.

---
format: html
---

## 1

```{r}
#| message: false
library(pubh)
```

## 2

```{r}
mtcars
```

This gives us the hint that the package pubh is loading something that changes the default behavior.

Inspecting the result table and what the package is loading, it seems that the output are huxtable output. We can reproduce now with only this package

---
format: html
---

## 1

```{r}
#| message: false
library(huxtable)
```

## 2

```{r}
mtcars
```

And it happens this function is loading a huxtable:::knit_print.data.frame() method. This means that ever…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@snhansen
Comment options

Answer selected by snhansen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
third-party Issues involving interaction with a third-party library html Issues with HTML and related web technology (html/css/scss/js)
3 participants