aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/anonok.pm
blob: 3e2a746e634b8dd2670ff291af0e19a53522e525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl
package IkiWiki::Plugin::anonok;

use warnings;
use strict;
use IkiWiki;

sub import { #{{{
	hook(type => "canedit", id => "anonok", call => \&canedit,);
} # }}}

sub canedit ($$$) { #{{{
	return "";
} #}}}

1