blob: cd05cd865f9029e76aa571d35b47c30a2d51de1b (
plain)
- #!/usr/bin/perl
- package IkiWiki::Plugin::anonok;
- use warnings;
- use strict;
- use IkiWiki 2.00;
- sub import { #{{{
- hook(type => "canedit", id => "anonok", call => \&canedit,);
- } # }}}
- sub canedit ($$$) { #{{{
- return "";
- } #}}}
- 1
|