HtmlEntities

Decode HTML entities in a string.

Examples

iex> "Tom & Jerry" |> HtmlEntities.decode
"Tom & Jerry"
iex> "¡Ay, caramba!" |> HtmlEntities.decode
"¡Ay, caramba!"
iex> "ő ő" |> HtmlEntities.decode
"ő ő"
Source

Summary

decode(string)

Decode HTML entities in a string

Functions

decode(string)

Specs:

Decode HTML entities in a string.

Source