We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 901db16 commit da91db8Copy full SHA for da91db8
htmlify.p6
@@ -192,7 +192,7 @@ sub MAIN(
192
if $sparse || !$search-file || !$disambiguation {
193
say "This is a sparse or incomplete run. DO NOT SYNC WITH doc.perl6.org!";
194
}
195
-
+
196
spurt('html/links.txt', @__URLS.sort.unique.join("\n"));
197
198
lib/Pod/Htmlify.pm6
@@ -42,12 +42,12 @@ sub rewrite-url($s) is export {
42
43
44
when / ^ <[A..Z]> / {
45
- $r = "/type/{uri_unescape($s)}";
+ $r = "/type/{escape-filename(uri_unescape($s))}";
46
succeed;
47
48
49
when / ^ <[a..z]> | ^ <-alpha>* $ / {
50
- $r = "/routine/{uri_unescape($s)}";
+ $r = "/routine/{escape-filename(uri_unescape($s))}";
51
52
53
0 commit comments