docx_bookmarks {officer} | R Documentation |
List bookmarks id that can be found in an rdocx
object.
docx_bookmarks(x)
x |
an |
library(magrittr) doc <- read_docx() %>% body_add_par("centered text", style = "centered") %>% body_bookmark("text_to_replace") %>% body_add_par("centered text", style = "centered") %>% body_bookmark("text_to_replace2") docx_bookmarks(doc) docx_bookmarks(read_docx())