An URI contains non-authorized characters. Or the quotes around the URI are not closed.
error: <a> escaping malformed URI reference
![]() | <a href="http://www.mozilla.org/one space.html">space</a> |
![]() | <a href="http://www.mozilla.org/one%20space.html">space</a> |
![]() | <a href="http://www.mozilla.org/one+space.html">space</a> |
![]() | <a href="http://www.w3c.org>w3c</a> |
![]() | <a href="http://www.w3c.org">w3c</a> |
Correct the URI. For the first example, a space should not be contained in URL. (Even if it works in all browsers...). This is described detailed in the RFC1738 (Look for Unsafe)