The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Pod::RTF - convert POD data to Rich Text Format

SYNOPSIS

    use Pod::RTF;

    pod2rtf("perlfunc.pod");

DESCRIPTION

Pod::RTF is a module that can convert documentation in the POD format (such as can be found throughout the Perl distribution) into Rich Text Format.

METHODS

The base method is pod2rtf, which does the actual POD to RTF conversion. Additional settings can be changed before this step with the following methods:

    set_normal_color(RED, GREEN, BLUE);
    

This sets the normal text font color (black by default).

    set_head_color(RED, GREEN, BLUE);
    

This sets the head font color (green by default).

    set_link_color(RED, GREEN, BLUE);

This sets the link font color (blue by default).

All color components (RED, GREEN and BLUE) are in the range 0-255.

AUTHOR

Martin Hosken <Martin_Hosken@sil.org>. Based on Pod::Text by Tom Christiansen. Additional coding by Aldo Calpini <dada@divinf.it>.

TODO

A lot of cleanup work, support user defined fonts and colors, and maybe learn something more on Rich Text Format.