Photos
Blog
Projects
vanrenterghem.biz
projects
/
git.ikiwiki.info.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
(no commit message)
[git.ikiwiki.info.git]
/
IkiWiki
/
Plugin
/
haiku.pm
diff --git
a/IkiWiki/Plugin/haiku.pm
b/IkiWiki/Plugin/haiku.pm
index fe8a782fad2ffdf5c83c4ecb0c86f269195dd2d7..bf23dce673f4b93a264545a4ab4c4156ef869eef 100644
(file)
--- a/
IkiWiki/Plugin/haiku.pm
+++ b/
IkiWiki/Plugin/haiku.pm
@@
-4,13
+4,23
@@
package IkiWiki::Plugin::haiku;
use warnings;
use strict;
use warnings;
use strict;
-use IkiWiki;
+use IkiWiki
3.00
;
-sub import { #{{{
+sub import {
+ hook(type => "getsetup", id => "haiku", call => \&getsetup);
hook(type => "preprocess", id => "haiku", call => \&preprocess);
hook(type => "preprocess", id => "haiku", call => \&preprocess);
-}
# }}}
+}
-sub preprocess (@) { #{{{
+sub getsetup {
+ return
+ plugin => {
+ safe => 1,
+ rebuild => undef,
+ section => "widget",
+ },
+}
+
+sub preprocess (@) {
my %params=@_;
my $haiku;
my %params=@_;
my $haiku;
@@
-42,9
+52,9
@@
sub preprocess (@) { #{{{
}
$haiku=~s/^\s+//mg;
}
$haiku=~s/^\s+//mg;
- $haiku=~s/\n/<br>\n/mg;
+ $haiku=~s/\n/<br
\/
>\n/mg;
- return "\n\n<blockquote>
$haiku
</blockquote>\n\n";
-}
# }}}
+ return "\n\n<blockquote>
<p>$haiku</p>
</blockquote>\n\n";
+}
1
1