nested_list | R Documentation |
Output a nested list in RMarkdown list format
nested_list(x, pre = "", quote = "")
x |
The list |
pre |
Text to prefix to each line (e.g., if you want all lines indented 4 spaces to start, use " ") |
quote |
Text to quote values with (e.g., use "'" to make sure values are not parsed as markdown |
A character string
x <- list(
a = list(a1 = "Named", a2 = "List"),
b = list("Unnamed", "List"),
c = c(c1 = "Named", c2 = "Vector"),
d = c("Unnamed", "Vector"),
e = list(e1 = list("A", "B", "C"),
e2 = list(a = "A", b = "B"),
e3 = c("A", "B", "C"),
e4 = 100),
f = "single item vector",
g = list()
)
nested_list(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.