This function is to be used by external packages that want to provide an object that can be inserted as a chunk object in paragraphs of a flextable object.
Value
a data.frame with an additional class "chunk" that makes it
suitable for beeing used in as_paragraph()
text pattern with control over all formatting properties
chunk_dataframe(
txt = c("any text", "other text"),
font.size = c(12, 10),
italic = c(FALSE, TRUE),
bold = c(FALSE, TRUE),
underlined = c(FALSE, TRUE),
color = c("black", "red"),
shading.color = c("transparent", "yellow"),
font.family = c("Arial", "Arial"),
hansi.family = c("Arial", "Arial"),
eastasia.family = c("Arial", "Arial"),
cs.family = c("Arial", "Arial"),
vertical.align = c("top", "bottom") )
text with url pattern
chunk_dataframe(
txt = c("any text", "other text"),
url = rep("https://www.google.fr", 2),
font.size = c(12, 10),
italic = c(FALSE, TRUE),
bold = c(FALSE, TRUE),
underlined = c(FALSE, TRUE),
color = c("black", "red"),
shading.color = c("transparent", "yellow"),
font.family = c("Arial", "Arial"),
hansi.family = c("Arial", "Arial"),
eastasia.family = c("Arial", "Arial"),
cs.family = c("Arial", "Arial"),
vertical.align = c("top", "bottom") )