I am trying to display web links in a text box (as raw text). However, get an error (and I'm not an HTML expert, unfortunately). This there any way to reformat the web links so that they can be displayed as raw text within the text box? Thanks!
library(ggtext)
library(ggplot2)
test_data <- data.frame(x = 1,
y = 2,
text = "https://www.stackoverflow.com")
ggplot(test_data, aes(x = x, y = y, label = text)) +
geom_textbox()
#> Error: gridtext has encountered a tag that isn't supported yet: <a>
#> Only a very limited number of tags are currently supported.
Created on 2021-02-24 by the reprex package (v1.0.0)