append text
append text into a paragraph of an rdocx object
slip_in_text(x, str, style = NULL, pos = "after", hyperlink = NULL)
x |
an rdocx object |
str |
text |
style |
text style |
pos |
where to add the new element relative to the cursor, "after" or "before". |
hyperlink |
turn the text into an external hyperlink |
This function will be deprecated in a next release because it is not
efficient and make users write complex code. Use instead fpar()
to build
formatted paragraphs.
x <- read_docx() x <- body_add_par(x, "Hello ", style = "Normal") x <- slip_in_text(x, "world", style = "strong") x <- slip_in_text(x, "Message is", style = "strong", pos = "before") x <- slip_in_text(x, "with a link", style = "strong", pos = "after", hyperlink = "https://davidgohel.github.io/officer/") print(x, target = tempfile(fileext = ".docx"))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.