aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/hnb.pm
blob: b6511205e06b24dbdfc90e7e098320c1914de9a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/perl
# hnb markup
package IkiWiki::Plugin::hnb;

# Copyright (C) 2008 by Axel Beckert <abe@deuxchevaux.org>
#
#  This program is free software; you can redistribute it and/or
#  modify it under the terms of the GNU General Public License
#  as published by the Free Software Foundation; either version 2
#  of the License, or (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#
# You can reach the author by snail-mail at the following address:
#
#  Axel Beckert
#  Kuerbergstrasse 20
#  8049 Zurich, Switzerland
#
# Version History:
#
# 2008-03-10 / 0.01:   Initial release
# 2008-05-08 / 0.01.1: License, version and version history added
# 2008-05-26 / 0.02:   Using content instead of page, s/mktemp/File::Temp/

my $VERSION ='0.02';

use warnings;
use strict;
use IkiWiki 2.00;
use File::Temp qw(:mktemp);

sub import {
    hook(type => "htmlize", id => "hnb", call => \&htmlize);
}

sub htmlize (@) {
    my %params = @_;

    # hnb does output version number etc. every time to STDOUT, so
    # using files makes it easier to seprarate.

    my ($fhi, $tmpin)  = mkstemp( "/tmp/ikiwiki-hnbin.XXXXXXXXXX"  );
    my ($fho, $tmpout) = mkstemp( "/tmp/ikiwiki-hnbout.XXXXXXXXXX" );

    open(TMP, '>', $tmpin) or die "Can't write to $tmpin: $!";
    print TMP $params{content};
    close TMP;

    system("hnb '$tmpin' 'go root' 'export_html $tmpout' > /dev/null");
    # Nicer, but too much output
    #system('hnb', $tmpin, 'go root', "export_html $tmpout");
    unlink $tmpin;

    open(TMP, '<', $tmpout) or die "Can't read from $tmpout: $!";
    local $/;
    my $ret = <TMP>;
    close TMP;
    unlink $tmpout;

    $ret =~ s/.*<body>//si;
    $ret =~ s/<body>.*//si;

    return $ret;
}

1;