Skip to content

Commit 1b1a0b1

Browse files
committed
[htmlify] fix URL munging
1 parent 34f72c3 commit 1b1a0b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

htmlify.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Perl6::TypeGraph;
1111

1212
sub url-munge($_) {
13-
return $_ if m{^ <[a..z]>+ '::/'};
13+
return $_ if m{^ <[a..z]>+ '://'};
1414
return "/type/$_" if m/^<[A..Z]>/;
1515
return "/routine/$_" if m/^<[a..z]>/;
1616
return $_;

0 commit comments

Comments
 (0)