Parses HTML files.
iex> HtmlParser.parse( iex> "<a href='http://hello.world'>Link</a>", iex> %{} iex> ) [{"a", [{"href", "http://hello.world"}], ["Link"]}] iex> HtmlParser.parse( iex> "<script type='text/javascript'>js</script>", iex> %{assets: ["js"]} iex> ) []