chunk of text with hyperlink wrapper
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, formatter = format_fun, url, ...)
x |
text or any element that can be formatted as text
with function provided in argument |
props |
an |
formatter |
a function that will format x as a character vector. |
url |
url to be used |
... |
additional arguments for |
This chunk option requires package officedown in a R Markdown context with Word output format.
Other chunk elements for paragraph:
as_bracket()
,
as_b()
,
as_chunk()
,
as_equation()
,
as_highlight()
,
as_image()
,
as_i()
,
as_sub()
,
as_sup()
,
colorize()
,
gg_chunk()
,
linerange()
,
lollipop()
,
minibar()
,
plot_chunk()
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
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.