in reply to Ignoring embedded POD
Perl determines how much whitespace to remove by the indent of the end-of-heredoc marker ("HERE" in the example).use 5.026; my $something = <<~'HERE'; =head1 Ignore me This doesn't look like pod to perldoc anymore. $var = 'foo'; # you can still indent things =cut HERE print $something;
|
|---|