summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/plaintext.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-06-24 20:33:41 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-06-24 20:33:41 -0400
commit532d4b0d5f40bd76f76b6b24da9e06f48bbdcf81 (patch)
tree68e6781ebbdb2d737a38baa01e4b211872c519a3 /IkiWiki/Plugin/plaintext.pm
parent3f6d3f3be8ec64a07636a38f0c9f95e4211a3128 (diff)
rename to txt
Diffstat (limited to 'IkiWiki/Plugin/plaintext.pm')
-rw-r--r--IkiWiki/Plugin/plaintext.pm45
1 files changed, 0 insertions, 45 deletions
diff --git a/IkiWiki/Plugin/plaintext.pm b/IkiWiki/Plugin/plaintext.pm
deleted file mode 100644
index eaa2725b9..000000000
--- a/IkiWiki/Plugin/plaintext.pm
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/perl
-# Plaintext as a wiki page type - links WikiLinks and URIs.
-#
-# Copyright (C) 2008 Gabriel McManus <gmcmanus@gmail.com>
-# Licensed under the GNU General Public License, version 2 or later
-
-package IkiWiki::Plugin::plaintext;
-
-use warnings;
-use strict;
-use IkiWiki 2.00;
-use HTML::Entities;
-require URI::Find;
-
-sub import {
- hook(type => "filter", id => "txt", call => \&filter);
- hook(type => "htmlize", id => "txt", call => \&htmlize);
-}
-
-# We use filter to convert raw text to HTML
-# (htmlize is called after other plugins insert HTML)
-sub filter (@) {
- my %params = @_;
- my $content = $params{content};
-
- if ($pagesources{$params{page}} =~ /.txt$/) {
- encode_entities($content);
- 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 $content;
-}
-
-# We need this to register the .txt file extension
-sub htmlize (@) {
- my %params=@_;
- return $params{content};
-}
-
-1