Braintree v0.6.0 Braintree.XML.Entity
Summary
Functions
Replace any escaped HTML entities with the unicode value
Encode all illegal XML characters by replacing them with corresponding entities
Functions
Replace any escaped HTML entities with the unicode value.
Examples
iex> Braintree.XML.Entity.decode("<tag>")
"<tag>"
iex> Braintree.XML.Entity.decode("Søren")
"Søren"
iex> Braintree.XML.Entity.decode("Normal")
"Normal"