md_chunk | R Documentation |
Take a character vector of lines and return a glue vector
md_chunk(x, type = c("tick", "tilde", "indent"), ...)
x |
A character vector of lines to be wrapped concatenated into a single
block, possibly created by |
type |
The type of code block to be created. Either "tick", "tilde"
(which call |
... |
Arguments to be passed to |
Turn a character vector of lines into a single code block either indented or
fenced in tildes or backticks. This markdown leaf block can be rendered as
nested HTML <code>
and <pre>
tags. This function either calls
md_fence()
or md_indent()
based on the type
argument.
A glue
object of length 1, with elements of x
formatted via
md_fence()
or md_indent()
.
Other leaf block functions:
md_blank()
,
md_fence()
,
md_heading()
,
md_indent()
,
md_label()
,
md_paragraph()
,
md_reference()
,
md_rule()
,
md_setext()
,
md_table()
md_chunk("$ sudo apt install r-base-dev", info = "bash")
md_indent(
n = c(4, 4, 6),
x = c(
"library(dplyr)",
"starwars %>%",
"filter(species == 'Droid')"
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.