Currently I have a Shiny app that I want to include a hyperlink to another website. Right now I have the following line of code in the mainPanel of my Shiny app ui:
tags$a(href="https://www.gofundme.com/f/fantasy-football-mental-health-initiative?utm_medium=copy_link&utm_source=customer&utm_campaign=p_lico+share-sheet",
"If you enjoyed this tool, please consider donating to the Fantasy Football Mental Health Initiative!")
Is there a way to just have a specific part of the text be the hyperlink with the rest of it as normal text? For example, I'd want just the "donating to the Fantasy Football Mental Health Initiative!" part to be hyperlinked (and thus underlined) instead of the entire block of text. Any suggestions on how to do this?