Popularity
6.5
Stable
Activity
0.0
Stable
89
4
24
Monthly Downloads: 239,295
Programming language: Elixir
License: MIT License
Tags:
Miscellaneous
HTML
Latest version: v0.5.1
html_entities alternatives and similar packages
Based on the "HTML" category.
Alternatively, view html_entities alternatives based on common mentions on social networks and blogs.
-
Meeseeks
An Elixir library for parsing and extracting data from HTML and XML with CSS or XPath selectors. -
texas
Texas is a powerful abstraction over updating your clients using server-side rendering and server-side Virtual DOM diff/patching.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of html_entities or a related project?
README
HtmlEntities
Elixir module for decoding and encoding HTML entities in a string.
Entity names, codepoints and their corresponding characters are copied from Wikipedia.
Installation
Add the dependency to your mix.exs
file, then run mix deps.get
.
defp deps do
[{:html_entities, "~> 0.4"}]
end
Usage
Inside iex:
iex> HtmlEntities.decode("Tom & Jerry")
"Tom & Jerry"
iex> HtmlEntities.decode("¡Ay, caramba!")
"¡Ay, caramba!"
iex> HtmlEntities.encode("<< KAPOW!! >>")
"<< KAPOW!! >>"
Inside a module:
defmodule EntityTest do
def non_breaking_space do
HtmlEntities.decode("¡")
end
end