diff options
author | Tom Feist <shabble@cowu.be> | 2010-07-09 23:05:17 +0000 |
---|---|---|
committer | Tom Feist <shabble@cowu.be> | 2010-07-09 23:05:17 +0000 |
commit | 0287ed5a746df8efa767881b9f745f5957c547e0 (patch) | |
tree | fe98309550823f4560a5b00f37212d3ba3503d2b /docs | |
parent | added history_search and scrolled-reminder as work in progress (diff) | |
download | irssi-scripts-0287ed5a746df8efa767881b9f745f5957c547e0.tar.gz irssi-scripts-0287ed5a746df8efa767881b9f745f5957c547e0.zip |
added a build script for POD to html
Diffstat (limited to 'docs')
-rwxr-xr-x | docs/buildpod.pl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/buildpod.pl b/docs/buildpod.pl new file mode 100755 index 0000000..816b6e0 --- /dev/null +++ b/docs/buildpod.pl @@ -0,0 +1,17 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use Pod::Simple::HTMLBatch; +use File::Find; + + +my $output_dir = "../../tmp/shab-irssi-scripts/docs/"; +my $batchconv = Pod::Simple::HTMLBatch->new; +$batchconv->add_css('podstyle.css', 1); +$batchconv->css_flurry(0); +$batchconv->javascript_flurry(0); + +$batchconv->batch_convert( [qw/./], $output_dir ); + |