gt doesn't seem to be able to parse a link that is meant to open in a new tab. For example:
library(tibble)
library(gt)
tibble(
link = "[RStudio](https://www.rstudio.com/){target='_blank'}"
) %>%
gt() %>%
fmt_markdown("link")
Results in a link that looks like: RStudio{target='_blank'}
Can anyone recommend a way to format a link such that it open in a new tab using gt and gt::fmt_markdown
?
Thanks!