as_md_vals | R Documentation |
Converts the given values to a character vector, formatted as verbatim Markdown. Character values are additionally wrapped in double quotes. Metadata like types or attributes of the input is not represented in the output, only its values.
as_md_vals(...)
... |
Values to be formatted. One or more R objects. |
A character vector.
Other (Pandoc) Markdown functions:
as_md_list()
,
as_md_val_list()
,
md_verb()
,
pipe_table()
,
strip_md()
,
strip_md_footnotes()
list(1L, 2.2, "other") |>
pal::as_md_vals()
# note that values are flattened before further processing them, so this yields the same result
list(list(list(1L, list(2.2), list(list("other"))))) |>
pal::as_md_vals()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.