diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-01-05 22:16:45 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-01-05 22:17:04 -0800 |
commit | 83f03993ddffac6de6447bb6d95580eaa8de37cc (patch) | |
tree | a8974ad8ccd0f71d8b1586c67b82e8e894ae004d | |
parent | 607d5b9e5f50a94c94bb20f077e97fdf3c14dc29 (diff) |
Added a URI test and split one into several.
The additional test ensures that URI schemes must
be more than one character.
-rw-r--r-- | spec.txt | 22 |
1 files changed, 18 insertions, 4 deletions
@@ -7588,20 +7588,28 @@ with their syntax: . <a+b+c:d> +. +<p><a href="a+b+c:d">a+b+c:d</a></p> +. +. <made-up-scheme://foo,bar> +. +<p><a href="made-up-scheme://foo,bar">made-up-scheme://foo,bar</a></p> +. +. <http://../> +. +<p><a href="http://../">http://../</a></p> +. +. <localhost:5001/foo> . -<p><a href="a+b+c:d">a+b+c:d</a></p> -<p><a href="made-up-scheme://foo,bar">made-up-scheme://foo,bar</a></p> -<p><a href="http://../">http://../</a></p> <p><a href="localhost:5001/foo">localhost:5001/foo</a></p> . - Spaces are not allowed in autolinks: . @@ -7668,6 +7676,12 @@ These are not autolinks: . . +<m:abc> +. +<p><m:abc></p> +. + +. <foo.bar.baz> . <p><foo.bar.baz></p> |