Closed RobertDober closed 3 years ago
This became apparent when testing with Elixir 1.13.0-rc.0 where URI.decode was improved :clap:
here is the problem
parsing <http://foo.bar.baz/%{foo}> yields
<http://foo.bar.baz/%{foo}>
[ {"p", [], [ {"a", [{"href", "http://foo.bar.baz/%{foo}"}], ["http://foo.bar.baz/%{foo}"], %{}} ], %{}} ]
but should yield
... {"a", [{"href", "http://foo.bar.baz/%25%7Bfoo%7D"}], ["http://foo.bar.baz/%{foo}"] ...
This became apparent when testing with Elixir 1.13.0-rc.0 where URI.decode was improved :clap:
here is the problem
parsing
<http://foo.bar.baz/%{foo}>
yieldsbut should yield