summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/goodstuff.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-11-22 06:15:32 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-11-22 06:15:32 +0000
commit9e05810f81a8fc2557876b510c8ab06cf1d56ab3 (patch)
tree617e9134c43a6579f56023c3d23ff4291ab8442a /IkiWiki/Plugin/goodstuff.mdwn
parent82b3a4dda76305376e2c13fb65db40bcc268b926 (diff)
rename
Diffstat (limited to 'IkiWiki/Plugin/goodstuff.mdwn')
-rw-r--r--IkiWiki/Plugin/goodstuff.mdwn30
1 files changed, 30 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/goodstuff.mdwn b/IkiWiki/Plugin/goodstuff.mdwn
new file mode 100644
index 000000000..384123f60
--- /dev/null
+++ b/IkiWiki/Plugin/goodstuff.mdwn
@@ -0,0 +1,30 @@
+#!/usr/bin/perl
+# Bundle of good stuff.
+package IkiWiki::Plugin::goodstuff;
+
+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