The characters c("&", '"', "'", "<", ">")
will be replaced with
c("&", """, "'", "<", ">")
, respectively.
htmlspecialchars(string)
the string with (or w/o) HTML special chars
the string with special chars replaced.
htmlspecialchars("<a href = 'https://yihui.org'>Yihui</a>")
#> [1] "<a href = 'https://yihui.org'>Yihui</a>"
# <a href = 'https://yihui.org'>Yihui</a>