aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/nicebundle.pm
blob: 7139a2af87fbf8e8600fd9f953e6b2ed3f4f8eb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/perl
package IkiWiki::Plugin::nicebundle;

use warnings;
use strict;
use IkiWiki;

my @bundle=qw{
	brokenlinks
	img
	map
	meta
	orphans
	pagecount
	pagestats
	shortcut
	smiley
	tag
	template
	toc
	toggle
	otl
};

sub import { #{{{
	IkiWiki::loadplugin($_) foreach @bundle;
} # }}}

1