| body_add_list | R Documentation |
Add a bullet or numbered list produced by
block_list_items() into an rdocx object.
body_add_list(x, items, pos = "after")
x |
an rdocx object |
items |
a |
pos |
where to add the new element relative to the cursor, one of "after", "before", "on". |
Other functions for adding content:
body_add_blocks(),
body_add_break(),
body_add_caption(),
body_add_docx(),
body_add_fpar(),
body_add_gg(),
body_add_img(),
body_add_par(),
body_add_plot(),
body_add_table(),
body_add_toc(),
body_append_start_context(),
body_import_docx()
library(officer)
items <- block_list_items(
list_item(fpar(ftext("Item 1", fp_text(color = "red"))), level = 1),
list_item(fpar("Sub-item"), level = 2),
list_item(fpar("Item 2"), level = 1),
list_type = "bullet"
)
doc <- read_docx()
doc <- body_add_list(doc, items = items)
print(doc, target = tempfile(fileext = ".docx"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.