File: index.cgi

package info (click to toggle)
libhtml-wikiconverter-perl 0.68-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 344 kB
  • sloc: perl: 1,186; makefile: 2
file content (17 lines) | stat: -rwxr-xr-x 360 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl
use warnings;
use strict;

use HTML::WikiConverter::WebApp;

#
# Configure the html-to-wiki web application. (Note that each line
# ends in a comma.)
#

my %config = (
  # Full path to the templates/ directory (eg, where main.html is)
  template_path => '__PATH_TO_TEMPLATES__',
);

HTML::WikiConverter::WebApp->new( PARAMS => \%config )->run;