Pod::Weaver::Plugin::Transformer.3pm

Langue: en

Version: 2010-06-12 (ubuntu - 24/10/10)

Section: 3 (Bibliothèques de fonctions)

NAME

Pod::Weaver::Plugin::Transformer - apply arbitrary transformers

VERSION

version 3.101630

OVERVIEW

This plugin acts as a Pod::Weaver::Role::Dialect that applys an arbitrary Pod::Elemental::Transformer to your input document. It is configured like this:
   [Transformer / Lists]
   transformer = List
   format_name = outline
 
 

This will end up creating a transformer like this:

   my $xform = Pod::Elemental::Transformer::List->new({
     format_name => 'outline',
   });
 
 

and that transformer will then be handed the entire input Pod document.

AUTHOR

Ricardo SIGNES <rjbs@cpan.org> This software is copyright (c) 2010 by Ricardo SIGNES.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.