-
reprex()
has been internally refactored to make better use of the official machinery for extending rmarkdown:reprex_document()
is a new R Markdown output format.reprex_render()
is a newly exported function.- A
reprex_document()
is designed to be rendered withreprex_render()
.reprex_render()
is designed to act on areprex_document()
. This is the heart of what thereprex()
function does, in addition to various interface and workflow niceties. - Two R Markdown templates ship with the package, which an RStudio user can
access via File > New File > R Markdown ... > From Template. One is
minimal; the other uses lots of reprex features. Both include
knit: reprex::reprex_render
in the YAML, which causes the RStudio "Knit" button to usereprex_render()
.
-
The
si
argument ofreprex()
is nowsession_info
. Being explicit seems more important than saving characters, given auto-completions. -
The
show
argument ofreprex()
is nowhtml_preview
, for the sake of consistency with other R Markdown output formats. -
reprex_VENUE(...)
is a new way to callreprex(..., venue = "VENUE")
. For example,reprex_r()
is equivalent toreprex(venue = "r")
. This makes non-default venues easier to access via auto-completion (#256). -
prex()
,prex_VENUE()
, andprex_render()
are new unexported functions that, likereprex()
, render a small bit of code, but with less reproducibility! The code is evaluated in the global workspace of the current process, with the current working directory. This pragmatic hack is useful when preparing a series of related snippets, e.g., for a Keynote or PowerPoint presentation, and there's not enough space to make each one self-contained. -
New article on techniques for making package startup quieter (#187, @marionlouveaux).
-
reprex_locale()
is a new thin wrapper aroundreprex()
that renders in a temporarily-altered locale (#250). -
UTF-8 encoding: Following the lead of knitr, reprex makes explicit use of UTF-8 internally (#237 @krlmlr, #261).
-
venue = "so"
(SO = Stack Overflow) has converged with defaultvenue = "gh"
(GitHub). As of January 2019, SO supports CommonMark fenced code blocks. The only remaining difference is that Stack Overflow does not support the collapsible details tag that we use on GitHub for the session info requested viasi = TRUE
(#231).
R 3.1 is no longer explicitly supported or tested. Our general practice is to support the current release (3.6, at time of writing), devel, and the 4 previous versions of R (3.5, 3.4, 3.3, 3.2).
-
sessioninfo is new in Suggests, replacing devtools.
-
glue is new in Imports, replacing whisker.
-
knitr moves from Suggests to Imports (although it was already a hard dependency via rmarkdown), so we can require v1.23 or higher, which represents a major switch to UTF-8.
-
The
crayon.enabled
option is explicitly set toFALSE
when rendering the reprex (#238, #239). -
Expression input is once again captured via
substitute()
(as opposed torlang::enexpr()
), which is more favorable for reprexes involving tidy eval (#241). -
New venue "html" to render HTML fragments, useful for pasting in sites without markdown but that allow HTML (#236 @cwickham).
-
The YAML of reprex's template has been updated in light of the stricter YAML parser used in Pandoc >= 2.2.2.
-
rlang::set_attrs()
has been soft-deprecated and is no longer used internally.
-
The reprex ad is formatted as superscript for
venue = "gh"
andvenue = "so"
, i.e. it is more subtle (#201). -
New experimental venue "rtf" produces syntax highlighted snippets suitable for pasting into presentation software such as Keynote or PowerPoint. This venue is discussed in an article (#26).
-
Arguments
opts_chunk
andopts_knit
have been removed fromreprex()
. The same effect has always been achievable via roxygen comments in the reprex code and the examples have always demonstrated this. Overriding knitr options doesn't seem to come up often enough in real-worldreprex()
usage to justify these arguments. -
Internal file system operations use the fs package. This should not make any user-facing changes in reprex and we definitely want to know if it does.
reprex has a website: https://reprex.tidyverse.org. It includes a contributed article from @njtierney (#103).
reprex has moved to the tidyverse Organization. It is installed as part of the tidyverse meta-package and is suggested to those seeking help.
reprex()
gains several arguments and many arguments can now be controlled via an option, in case a user wants their own defaults.
The new reprex_selection()
add-in reprexes the current selection, with venue controlled by the option reprex.venue
. It can be handy to bind to a keyboard shortcut (#84 @hadley).
If reprex can't write to the user's clipboard (e.g. on RStudio server or Unix-like systems lacking xclip or xsel), it offers to open the output file for manual copy.
These look like reprex(..., arg = opt(DEFAULT), ...)
in the help file. This is shorthand for arg = getOption("reprex.arg", DEFAULT)
, i.e. the option reprex.arg
is consulted and, if unset, the documented default is used. Allows user to define their own default behaviour (#116).
advertise
: toggles inclusion of a footer that describes when and how the reprex was created, e.g., "Created on 2017-11-16 by the reprex package (v0.1.1.9000)". Defaults toTRUE
(#121, #69).style
: requests code restyling via the newly-Suggested styler package. styler can cope with tidyeval syntactical sugar, e.g.df %>% group_by(!! group_var)
. Defaults toFALSE
(#108, #94).tidyverse_quiet
: affords control of the startup message of the tidyverse meta-package. Defaults toTRUE
, i.e. suppresses the message (important special case of #70, #100).std_out_err
: appends output sent to stdout and stderr by the reprex rendering process. This can be necessary to reveal output if the reprex spawns child processes or hassystem()
calls. Defaults toFALSE
(#90, #110).render
: determines if the reprex is actually rendered or just returns after producing the templated.R
file. For internal testing.
-
Line wrapping is preserved from source via a Pandoc option (#145 @jimhester, #175).
-
venue = "gh"
now targets CommonMark as the standard for GitHub Flavored Markdown (#77). -
venue = "so"
has appropriate whitespace at the start. -
venue = "ds"
is a new value, corresponding to https://www.discourse.org, which is the platform behind community.rstudio.com. This is currently just an alias for the default"gh"
GitHub venue, because the formatting appears to be compatible. Adding the"ds"
value so Discourse can be documented and to guard against the possibility that some formatting is actually unique.
-
The
keep.source
option is set toTRUE
when rendering the reprex, so reprexes involving srcrefs should work (#152). -
The "undo" functions (
reprex_invert()
,reprex_clean()
,reprex_rescue()
) handleinput
andoutfile
likereprex()
does. Theoutfile
argument is new (#129, #68). -
The default value for knitr's
upload.fun
is now set according to the venue. It isknitr::imgur_upload()
for all venues except"r"
, where it isidentity
(#125). -
The HTML preview should appear in the RStudio Viewer more consistently, especially on Windows (#75 @yutannihilation).
-
More rigorous use of UTF-8 encoding (#76 @yutannihilation).
-
Expression input handling has been refactored. As a result, formatR is no longer Suggested. Trailing comments -- inline and on their own line -- are also now retained (#89, #91, #114, @jennybc and @jimhester).
-
Custom prompts are now escaped when used in regexes (#98, #99 @jimhester). Embedded newlines are now escaped.
This was a non-functioning release created by CRAN maintainers by commenting out lines of code relating to the clipboard.
- Pandoc added to SystemRequirements.
-
outfile = NA
causes outfiles to be left in working directory. Filenames will be based on theinput
file, if there was one. -
reprex()
strips any leading prompts from input code. -
Added functions
reprex_clean()
,reprex_invert()
, andreprex_rescue()
in order to go backwards, i.e. recover source from a wild-caught reprex. -
venue = "R"
(or"r"
) can be used to get an R script back, augmented with commented output. -
comment
argument added to specify prefix for commented output. -
Added an RStudio addin, accessed via "Render reprex".
-
input
argument toreprex()
and friends handles code as string, character vector, or file path. -
The reprex is rendered via
callr::r_safe()
and is thus run in a clean, separate R process, eliminating any leakage of objects or loaded packages to/from the calling session. -
reprex()
gains optional argumentsopts_chunk
andopts_knit
, taking named list as input, in order to supplement or override default knitr chunk and package options, respectively. (#33)- This made the explicit
upload.fun
argument unnecessary, so it's gone. Theupload.fun
option defaults toknitr::imgur_upload
, which means figures produced by the reprex will be uploaded to imgur.com and the associated image syntax will be put into the Markdown, e.g.![](http://i.imgur.com/QPU5Cg9.png)
. (#15 @paternogbc)
- This made the explicit
-
Order of
reprex()
arguments has changed. -
reprex()
gains thesi
argument to request thatdevtools::session_info()
orsessionInfo()
be appended to reprex code (#6 @dgrtwo). Whensi = TRUE
andvenue = "gh"
(the default), session info is wrapped in a collapsible details tag. See an example (#55). -
Reprex code can be provided as an R expression. (#6 @dgrtwo, #35)
-
reprex()
uses clipboard functionality fromclipr
and thus should work on Windows and suitably prepared Unix-like systems, in addition to Mac OS. (#16 @mdlincoln)
- I tweeted about this and some people actually used it!