Acme::PM::Dresden::Convert::VQWiki2TWiki is a Perl module to convert VQWiki syntax into TWiki syntax.
SYNOPSIS
use Acme::PM::Dresden::Convert::VQWiki2TWiki;
my $convert = new Acme::PM::Dresden::Convert::VQWiki2TWiki (vqwiki => $text);
print $convert->twiki;
# or
my $convert = new Acme::PM::Dresden::Convert::VQWiki2TWiki;
$convert->vqwiki ($text);
print $convert->twiki;
# or
my $convert = new Acme::PM::Dresden::Convert::VQWiki2TWiki;
print $convert->vqwiki2twiki ($text);
METHODS:
init
Calls some functions you can overload in derived classes to execute code before and after Class::MethodMaker's hash_init (pre_init and post_init, respectively).
pre_init
Called before Class::MethodMaker's hash_init. Overload this in derived classes, e.g., to set default values.
post_init
Called after Class::MethodMaker's hash_init. Overload this in derived classes, e.g., to enforce values.
twiki
Returns the TWiki text that results from converting the text given with vqwiki.
Product's homepage
Requirements:
· Perl