
Last chance! 50% off unlimited learning
Sale ends in
The function lets add hyperlinks within flextable
objects with function compose
.
It should be used inside a call to as_paragraph
.
hyperlink_text(x, props = NULL, formater = format_fun, url, ...)
text or any element that can be formatted as text
with function provided in argument formater
.
an fp_text
object to be used to format the text.
If not specified, it will be the default value corresponding to the cell.
a function that will format x as a character vector.
url to be used
additional arguments for formater
function.
Other chunk elements for paragraph: as_chunk
,
as_image
, linerange
,
minibar
# NOT RUN {
dat <- data.frame(
col = "Google it",
href = "https://www.google.fr/search?source=hp&q=flextable+R+package",
stringsAsFactors = FALSE)
ft <- flextable(dat)
ft <- compose( x = ft, j = "col",
value = as_paragraph(
"This is a link: ",
hyperlink_text(x = col, url = href ) ) )
ft
# }
Run the code above in your browser using DataLab