README.md

# glentities

[![Package Version](https://img.shields.io/hexpm/v/glentities)](https://hex.pm/packages/glentities)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/glentities/)

An HTML entity encoder/decoder for Gleam.

## Quick start

```gleam
import glentities

glentities.encode("</html>", glentities.Named) // "&lt;&sol;html&gt;"
glentities.encode("</html>", glentities.Hex)   // "&#x3C;&#x2F;html&#x3E;"

glentities.decode("&#x3C;&#x2F;html&#x3E;")    // "</html>"
glentities.decode("&lt;&sol;html&gt;")         // "</html>"
```

## Development

```sh
gleam test  # Run the tests
```

## Installation

This package can be added to your Gleam project:

```sh
gleam add glentities
```

and its documentation can be found at <https://hexdocs.pm/glentities>.