This function is a wrapper around existing C++ code on decoding HTML entities. The original C++ code is given by Christoph. Please refer to the answer on SO here.
html_decode(str)
str | A character vector |
---|
Decoded character vector
html_decode(c("&", "€")) #> [1] "&" "€"