-
- my @ret="#!/usr/bin/perl
-# Setup file for ikiwiki.
-# Passing this to ikiwiki --setup will make ikiwiki generate wrappers and
-# build the wiki.
-#
-# Remember to re-run ikiwiki --setup any time you edit this file.
-
-use IkiWiki::Setup::Standard {";
-
- foreach my $id (sort keys %{$IkiWiki::hooks{getsetup}}) {
- my @setup=$IkiWiki::hooks{getsetup}{$id}{call}->();
- return unless @setup;
- push @ret, "\t# $id plugin";
- while (@setup) {
- my $key=shift @setup;
- my %info=%{shift @setup};
-
- push @ret, "\t# ".$info{description} if exists $info{description};