NAME
    Text::Ligature - Replace sequences of characters with typographic
    ligatures

VERSION
    This document describes Text::Ligature version 0.01.

SYNOPSIS
        use Text::Ligature qw( :all );

        to_ligature('offloading floral offices refines effectiveness');
        # returns: oﬄoading ﬂoral oﬃces reﬁnes eﬀectiveness

        from_ligature('oﬄoading ﬂoral oﬃces reﬁnes eﬀectiveness');
        # returns: offloading floral offices refines effectiveness

DESCRIPTION
    Replaces sequences of characters with corresponding typographic
    ligatures.

        Ligature    Non-ligature
        ﬀ           ff
        ﬁ           fi
        ﬂ           fl
        ﬃ           ffi
        ﬄ           ffl
        ﬅ           ft
        ﬆ           st

    This is an early release. Specifying the ligatures to replace will be
    supported in a future version.

AUTHOR
    Nick Patch <patch@cpan.org>

COPYRIGHT AND LICENSE
    Copyright 2011 Nick Patch

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

