htmlspecialchars {fun} | R Documentation |
The characters c("&", '"', "'", "<", ">")
will be replaced with
c("&", """, "'", "<", ">")
, respectively.
htmlspecialchars(string)
string |
the string with (or w/o) HTML special chars |
the string with special chars replaced.
Yihui Xie <https://yihui.org>
https://www.php.net/manual/en/function.htmlspecialchars.php
htmlspecialchars("<a href = 'https://yihui.org'>Yihui</a>")
# <a href = 'https://yihui.org'>Yihui</a>