Text/Beautify version 0.05
==========================

Beautifies text

 use Text::Beautify;

 $text = "badly written text ,,you know ?"

 $new_text = beautify($text);
 # $new_text now holds "Badly written text, you know?"

 enable_feature('repeated_punctuation'); # enables the feature
 disable_feature('trailing_space');      # disables the feature

 @features_enables = enabled_features();

 @all_features = features();

INSTALLATION

To install this module type the following:

  perl Makefile.PL
  make
  make test
  make install

DEPENDENCIES

No dependencies

BUGS

Each line is treated independently. This means a sentence comprising two lines
will get it's second line's first character uppercased... must solve that ASAP.

Smiles such as "this :-(" are turned into "this:-("

SEE ALSO

The POD documentation in Beautify.pm

COPYRIGHT AND LICENCE

Copyright (C) 2004 Jose Alves de Castro

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