NAME
Text::Lorem::More - Generate correctly formatted nonsense using random Latin words.
VERSION
Version 0.05
MORE TESTING NEEDED
MORE DOCUMENTATION NEEDED
...but it should work...
SYNOPSIS
Generate correctly formatted nonsense using random Latin words.
use Text::Lorem::More;
my $tlm = Text::Lorem::More->new();
# Print out a greeting to a random person.
print "Hello, ", $tlm->fullname, "\n";
# You could also ...
print $tlm->generate("Hello, +fullname\n");
... Or, you can use this package functionally, e.g.:
use Text::Lorem::More qw(lorem);
# Just generate a simple word.
my $latinwordoftheday = lorem->word;
# Produce text in the same manner as Text::Lorem
my $content = lorem->paragraphs(3);
# Print 4 paragraphs, each separated by a single newline and tab:
print "\t", lorem->paragraph(4, "\n\t");
EXPORT
FUNCTIONS
new Construct a new Text::Lorem::More object with (optional) source.
generate Generate some random-looking text using the specified pattern.
parse
source Return the source for this instance.
lorem Return a singleton using the default generators.
AUTHOR
Robert Krimen, <robertkrimen at gmail.com>
SEE ALSO
Text::Lorem and WWW::Lipsum and http://lipsum.com/
ACKNOWLEDGEMENTS
Thanks to Adeola Awoyemi for writing Text::Lorem which was the inspiration behind this module.
COPYRIGHT & LICENSE
Copyright 2006 Robert Krimen, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
BUGS
Please report any bugs or feature requests to bug-text-lorem-more at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Text-Lorem-More. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Text::Lorem::More
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
Search CPAN