NAME

    Text::Munge::Consonants - removes consonants from words phrases

SYNOPSIS
        use Text::Munge::Consonants;

        $obj = new Text::Munge::Consonants();
        $obj->add_stopwords LIST

        $string = $obj->munge LIST

DESCRIPTION

    Text::Munge::Consonants strips consonant spaces from words and phrases
    to shorten the length of an input text.

EXAMPLE

        use Text::Munge::Consonants();

        $munger = new Text::Munge::Consonants();

        $text = "This sentence will have some of it\'s consonants removed.";

        print $munger->munge($text), "\n";


AUTHOR

    Baden Hughes <baden@cpan.org>
    Broadly based on Text::Munge::Vowels by Robert Rothenberg <wlkngowl@unix.asb.com>

