Extension to Embedded Elixir (EEx), that allows content to be safely embedded into HTML.
iex> title = "EEx Rocks!"
iex> content = ~E"<h1><%= title %></h1>"
iex> "#{content}"
"<h1>EEx Rocks!</h1>"
iex> title = "<script>"
iex> content = ~E"<h1><%= title %></h1>"
iex> "#{content}"
"<h1><script></h1>"
I would like to see this project as part of the Elixir language. The reasons for this are explained in this proposal.