aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Setup/Standard.pm
blob: 693c4fe60a7d3a3d9f4944aac8c778d2d1a71f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl
# Standard ikiwiki setup module.
# Parameters to import should be all the standard ikiwiki config stuff,
# plus an array of wrappers to set up.

use warnings;
use strict;
use IkiWiki::Wrapper;
use IkiWiki::Render;

package IkiWiki::Setup::Standard;

sub import {
	$IkiWiki::Setup::raw_setup=$_[1];
}

1