NAME
    String::Indent - String indenting routines

VERSION
    This document describes version 0.01 of String::Indent (from Perl
    distribution String-Indent), released on 2014-12-10.

FUNCTIONS
  indent($indent, $str, \%opts) => STR
    Indent every line in $str with $indent. Example:

     indent('  ', "one\ntwo\nthree") # "  one\n  two\n  three"

    %opts is optional. Known options:

    *   indent_blank_lines => BOOL (default 1)

        If set to false, does not indent blank lines (i.e., lines containing
        only zero or more whitespaces).

TODO
    Option 'first_line_indent'.

    'dedent' function.

SEE ALSO
HOMEPAGE
    Please visit the project's homepage at
    <https://metacpan.org/release/String-Indent>.

SOURCE
    Source repository is at
    <https://github.com/perlancar/perl-String-Indent>.

BUGS
    Please report any bugs or feature requests on the bugtracker website
    <https://rt.cpan.org/Public/Dist/Display.html?Name=String-Indent>

    When submitting a bug or request, please include a test-file or a patch
    to an existing test-file that illustrates the bug or desired feature.

AUTHOR
    perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2014 by perlancar@cpan.org.

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

