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
Like pkgdown does
Sys.getenv("IN_PKGDOWN")
Something like
"IN_REPREX"
So it is easy to know you are in reprex.
I am trying to see how I could tackle #419 inside gt, but I am having a hard time finding out if we are in reprex or not.
The following function doesn't seem to be reliable?
in_reprex <- function() "gfm-yaml_metadata_block" %in% knitr::opts_knit$get("rmarkdown.pandoc.to")
The text was updated successfully, but these errors were encountered:
No need, reprex sets an option dmurdoch/rgl#186
in_reprex <- function() !is.null(getOption("reprex.current_venue"))
Sorry, something went wrong.
No branches or pull requests
Like pkgdown does
Sys.getenv("IN_PKGDOWN")
Something like
"IN_REPREX"
So it is easy to know you are in reprex.
I am trying to see how I could tackle #419 inside gt, but I am having a hard time finding out if we are in reprex or not.
The following function doesn't seem to be reliable?
The text was updated successfully, but these errors were encountered: