The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Text::DeLoreanIpsum - Generate random Back to the Future looking text

SYNOPSIS

    use Text::DeLoreanIpsum;

    my $text = Text::DeLoreanIpsum->new();

    # Generate a string of list of BTTF characters
    $characters = $text->characters();
  
    # Generate a string of text with 5 words
    $words = $text->words(5);
  
    # Generate a string of text with 2 sentences
    $sentences = $text->sentences(2);
  
    # Generate 3 paragraphs
    $paragraphs = $text->paragraphs(3);

DESCRIPTION

Often when developing a website or other application, it's important to have placeholders for content. This module generates prescribed amounts of fake Back to the Future text

CONSTRUCTOR

new()

The default constructor, new() takes no arguments and returns a Text::DeLoreanIpsum object.

METHODS

words( INTEGER )

Returns INTEGER fake TBBT words.

sentences( INTEGER )

Returns INTEGER sentences in fake TBBT.

paragraphs( INTEGER )

Returns INTEGER paragraphs of fake TBBT text.

AUTHOR

Mariano Spadaccini (MARIANOS)

SEE ALSO

    L<Text::Lorem> and L<http://deloreanipsum.com/>

COPYRIGHT AND LICENSE

Copyright (C) 2016 by Mariano Spadaccini This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.18.2 or, at your option, any later version of Perl 5 you may have available.