Help language development. Donate to The Perl Foundation

HTML::Entity::Fast zef:lizmat last updated on 2022-07-23

README.md
[![Actions Status](https://github.com/lizmat/HTML-Entities-Fast/actions/workflows/test.yml/badge.svg)](https://github.com/lizmat/HTML-Entities-Fast/actions)

NAME
====

HTML::Entity::Fast - Encode / Decode HTML entities faster

SYNOPSIS
========

```raku
use HTML::Entity::Fast;

say encode-html-entities '<ent> & ©';  # &lt;ent&gt; &amp; &copy;
say decode-html-entities '&lt;ent&gt; &amp; &copy;'  # <ent> & ©
```

DESCRIPTION
===========

HTML::Entity::Fast provides two subroutines, one for encoding HTML entities in a string, and one for decoding them.

AUTHOR
======

Elizabeth Mattijsen <[email protected]>

Source can be located at: https://github.com/lizmat/HTML-Entity-Fast . Comments and Pull Requests are welcome.

If you like this module, or what I’m doing more generally, committing to a [small sponsorship](https://github.com/sponsors/lizmat/) would mean a great deal to me!

COPYRIGHT AND LICENSE
=====================

Copyright 2022 Elizabeth Mattijsen

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.