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 29b25be commit 9702a33Copy full SHA for 9702a33
lib/Pod/Htmlify.pm6
@@ -97,7 +97,7 @@ class Website is export {
97
method write-category-indices {
98
say "Creating category index files";
99
my @headers = qw{File Title Author};
100
- for $!categories.categories-table.kv -> $category-key, $title {
+ for $!categories.categories-table.sort(*.key)>>.kv -> ($category-key, $title) {
101
my $category = $!categories.category-with-key($category-key);
102
my @examples = $category.examples.values;
103
my @rows = @examples.map: {[.pod-link, .title, .author]};
0 commit comments