NAME

Pod::IsoPod - converts ISO-8859-1 characters to pod Escapes and back again.


SYNOPSIS

    use Pod::IsoPod;
    use FileHandle;
    my $InFile = new FileHandle;
    my $OutFile = new FileHandle;
    open ($InFile, '<' . $ARGV[0]);
    open ($OutFile, '>' . $ARGV[1]); # Error checking is left as an exercise
    iso2ascii($InFile, $OutFile);    # ISO8859 characters to Pod Escapes
    ascii2iso($InFile, $OutFile);    # Pod Escapes to ISO8859 characters


DESCRIPTION

Pod::IsoPod is a module that can be used to convert pod files written with an editor that supports the ISO-8859-1 character set to 7bit ascii text or vice versa.

Each ISO-8859-1 character is converted to an HTML Escape string. these strings are understood by the pod2xxx programs.


SEE ALSO

    asciipod2isopod - program that converts ascii pods to iso8859 character set
    isopod2asciipod - program that converts iso8859 pods to ascii character set


AUTHOR

Simon Washbrook <SimonWashbrook@compuserve.com>


TODO

    All of it.