aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/txt.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-10-25 22:37:34 -0400
committerJoey Hess <joey@kitenet.net>2010-10-25 22:37:34 -0400
commit2076ed597c02bfede9063c3d40f4b855d4e8f8b8 (patch)
treefdff58f7baddd1ab9d5fe946825e15dc516b16cf /IkiWiki/Plugin/txt.pm
parent38f0bec34560d2258a2d690676987b12ab184490 (diff)
downloadikiwiki-2076ed597c02bfede9063c3d40f4b855d4e8f8b8.tar
ikiwiki-2076ed597c02bfede9063c3d40f4b855d4e8f8b8.tar.gz
txt: Fix display when used inside a format directive.
txt's use of a format hook can't work in that case, so it needs to use a htmlizeformat hook in this case to handle wrapping the text in pre tags.
Diffstat (limited to 'IkiWiki/Plugin/txt.pm')
-rw-r--r--IkiWiki/Plugin/txt.pm38
1 files changed, 28 insertions, 10 deletions
diff --git a/IkiWiki/Plugin/txt.pm b/IkiWiki/Plugin/txt.pm
index 0d9a0b35b..fcfb68be9 100644
--- a/IkiWiki/Plugin/txt.pm
+++ b/IkiWiki/Plugin/txt.pm
@@ -17,6 +17,7 @@ sub import {
hook(type => "getsetup", id => "txt", call => \&getsetup);
hook(type => "filter", id => "txt", call => \&filter);
hook(type => "htmlize", id => "txt", call => \&htmlize);
+ hook(type => "htmlizeformat", id => "txt", call => \&htmlizeformat);
eval q{use URI::Find};
if (! $@) {
@@ -46,25 +47,42 @@ sub filter (@) {
will_render($params{page}, 'robots.txt');
writefile('robots.txt', $config{destdir}, $content);
}
-
- encode_entities($content, "<>&");
- if ($findurl) {
- my $finder = URI::Find->new(sub {
- my ($uri, $orig_uri) = @_;
- return qq|<a href="$uri">$orig_uri</a>|;
- });
- $finder->find(\$content);
- }
- $content = "<pre>" . $content . "</pre>";
+ return txt2html($content);
}
return $content;
}
+sub txt2html ($) {
+ my $content=shift;
+
+ encode_entities($content, "<>&");
+ if ($findurl) {
+ my $finder = URI::Find->new(sub {
+ my ($uri, $orig_uri) = @_;
+ return qq|<a href="$uri">$orig_uri</a>|;
+ });
+ $finder->find(\$content);
+ }
+ return "<pre>" . $content . "</pre>";
+}
+
# We need this to register the .txt file extension
sub htmlize (@) {
my %params=@_;
return $params{content};
}
+sub htmlizeformat ($$) {
+ my $format=shift;
+ my $content=shift;
+
+ if ($format eq 'txt') {
+ return txt2html($content);
+ }
+ else {
+ return;
+ }
+}
+
1