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).

SEE ALSO

    Indent::String, String::Nudge

