Current section

Files

Jump to
html_entities README.md
Raw

README.md

HtmlEntities
============
Elixir module for decoding HTML entities in a string.
## Usage
```elixir
iex> HtmlEntities.decode("Tom & Jerry")
"Tom & Jerry"
iex> HtmlEntities.decode("¡Ay, caramba!")
"¡Ay, caramba!"
```