We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thank you @RLesur for the great package, it made my life much easier!
About the issue. I used to have the following chunk setup in my current project:
```{r setup, include = FALSE} knitr::opts_chunk$set(echo = TRUE, eval = TRUE, comment = NA, message = FALSE, warning = FALSE, results = FALSE) ```
Nevertheless, global results=FALSE seems to stop working klippy properly.
results=FALSE
klippy
It seems that results=TRUE is necessary what actually helped me to solve the issue.
results=TRUE
```{r klippy, echo=FALSE, include=TRUE, results=TRUE} klippy::klippy() ```
Could you include this in the documentation? I think it can spare some time for future users. Thank!
Best, krystian8207
The text was updated successfully, but these errors were encountered:
RLesur
No branches or pull requests
Thank you @RLesur for the great package, it made my life much easier!
About the issue.
I used to have the following chunk setup in my current project:
Nevertheless, global
results=FALSE
seems to stop workingklippy
properly.It seems that
results=TRUE
is necessary what actually helped me to solve the issue.Could you include this in the documentation? I think it can spare some time for future users.
Thank!
Best,
krystian8207
The text was updated successfully, but these errors were encountered: