html_entities icon indicating copy to clipboard operation
html_entities copied to clipboard

Elixir module for decoding HTML entities.

Results 4 html_entities issues
Sort by recently updated
recently updated
newest added

Expected: `HtmlEntities.decode("100%") #=> "100%"` Actual: `HtmlEntities.decode("100%") #=> "100%"`

See discussion in #25. Some entities, for example `&amp`, allow the semicolon to be left out. We should support decoding both `Tom &amp Jerry` and `Tom & Jerry` to `Tom...

See #15, but implementation needs to be reworked. Essentially, a string like `"this has both unsafe characters & and an existing & entity"` should encode to `"this has both unsafe...

help wanted
good first issue