The function lets add hyperlinks within flextable objects.
It is used to add it to the content of a cell of the
flextable with the functions compose(), append_chunks()
or prepend_chunks().
URL are not encoded, they are preserved 'as is'.
Arguments
- x
text or any element that can be formatted as text with function provided in argument
formatter.- props
an
fp_text_default()orofficer::fp_text()object to be used to format the text. If not specified, it will be the default value corresponding to the cell.- formatter
a function that will format x as a character vector.
- url
url to be used
- ...
additional arguments for
formatterfunction.
See also
Other chunk elements for paragraph:
as_b(),
as_bracket(),
as_chunk(),
as_equation(),
as_highlight(),
as_i(),
as_image(),
as_sub(),
as_sup(),
as_word_field(),
colorize(),
gg_chunk(),
grid_chunk(),
linerange(),
minibar(),
plot_chunk()
Examples
dat <- data.frame(
col = "Google it",
href = "https://www.google.fr/search?source=hp&q=flextable+R+package",
stringsAsFactors = FALSE
)
ftab <- flextable(dat)
ftab <- compose(
x = ftab, j = "col",
value = as_paragraph(
"This is a link: ",
hyperlink_text(x = col, url = href)
)
)
ftab
col
href
This is a link: Google it
https://www.google.fr/search?source=hp&q=flextable+R+package
