summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/nicebundle.pm
blob: 7139a2af87fbf8e8600fd9f953e6b2ed3f4f8eb5 (plain)
  1. #!/usr/bin/perl
  2. package IkiWiki::Plugin::nicebundle;
  3. use warnings;
  4. use strict;
  5. use IkiWiki;
  6. my @bundle=qw{
  7. brokenlinks
  8. img
  9. map
  10. meta
  11. orphans
  12. pagecount
  13. pagestats
  14. shortcut
  15. smiley
  16. tag
  17. template
  18. toc
  19. toggle
  20. otl
  21. };
  22. sub import { #{{{
  23. IkiWiki::loadplugin($_) foreach @bundle;
  24. } # }}}
  25. 1