NAME
Syntax::Feature::Qi - Remove the same indendation from all lines in a string
VERSION
Version 1.0000, released 2016-04-16.
SYNOPSIS
say
qi{
This is a
sub
routine:
sub
printme {
shift
;
}
};
# is exactly the same as
say
qi{
This is a
sub
routine:
sub
printme {
shift
;
}
};
DESCRIPTION
This is a syntax extension to be used with syntax.
It provides two quote-like operators, qi
and qqi
. They are drop-in replacements for q
and qq
, respectively.
They work like this: First they find the first line in the string with a non-white space character. It saves the white space from the beginning of that line up to that character, and then it tries to remove the exact same whitespace from all other lines in the string.
SEE ALSO
Syntax::Feature::Ql (which served as a base for this)
SOURCE
https://github.com/Csson/p5-Syntax-Feature-Qi
HOMEPAGE
https://metacpan.org/release/Syntax-Feature-Qi
AUTHOR
Erik Carlsson <info@code301.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Erik Carlsson.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.