In a HTML 4.01 Transitional document, is it a breach of the standard to specify a link href without escaping space characters?
For instance this link
<a href="http://example.com/some page.html">Some page</a>
as opposed to
<a href="http://example.com/some%20page.html">Some page</a>
I can’t easily work it out from http://www.w3.org/TR/html40/struct/links.html#h-12.1.3 , maybe one of you folks can enlighten?
Yes. The href attribute, takes a URI as defined in RFC1630, RFC1738 and RFC1808.
RFC1738 says:
and