View source: R/decorate_code.R
decorate_code | R Documentation |
decorated
Creates an object of the class decorated
decorate_code(text, ...)
text |
A string, presumably representing R code. |
... |
Any number of default chunk options to override. |
A decorated
object.
flair
# When run in console, this will print the results of mean(1:10) my_code <- decorate_code(text = 'mean(1:10)') %>% flair_funs() # The object itself, when printed, previews your code with flair my_code # Objects defined by decorate_code are created in the current environment for later use. my_code <- decorate_code('foo <- mean(1:10)') foo + 5
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.