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.
2 parents cc46aaa + 3f9f9aa commit 3c5ffe4Copy full SHA for 3c5ffe4
htmlify.p6
@@ -739,10 +739,12 @@ sub write-index-files() {
739
p2h(extract-pod('doc/404.pod'),
740
pod-path => '404.pod');
741
742
+ # sort prorams index by file name to allow author control of order
743
say 'Writing html/programs.html ...';
744
spurt 'html/programs.html', p2h(pod-with-title(
745
'Perl 6 Programs Documentation',
- pod-table($*DR.lookup('programs', :by<kind>).sort(*.name).map({[
746
+ #pod-table($*DR.lookup('programs', :by<kind>).sort(*.name).map({[
747
+ pod-table($*DR.lookup('programs', :by<kind>).map({[
748
pod-link(.name, .url),
749
.summary
750
]}))
0 commit comments