Skip to content

Commit

Permalink
Improve formatting of $Archive::Tar::RESOLVE_SYMLINK documentation
Browse files Browse the repository at this point in the history
The lines in this paragraph were indented which tended to make it
being rendered as code block which looked bad in both text based
POD viewers as well as when this was rendered as HTML.
  • Loading branch information
mstock authored and bingos committed Mar 29, 2023
1 parent 7629e53 commit 935908b
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions lib/Archive/Tar.pm
Expand Up @@ -2153,25 +2153,31 @@ numbers. Added for compatibility with C<busybox> implementations.
=head2 Tuning the way RESOLVE_SYMLINK will works
You can tune the behaviour by setting the $Archive::Tar::RESOLVE_SYMLINK variable,
or $ENV{PERL5_AT_RESOLVE_SYMLINK} before loading the module Archive::Tar.
You can tune the behaviour by setting the $Archive::Tar::RESOLVE_SYMLINK variable,
or $ENV{PERL5_AT_RESOLVE_SYMLINK} before loading the module Archive::Tar.
Values can be one of the following:
Values can be one of the following:
none
Disable this mechanism and failed as it was in previous version (<1.88)
=over 4
=item none
Disable this mechanism and failed as it was in previous version (<1.88)
speed (default)
If you prefer speed
this will read again the whole archive using read() so all entries
will be available
=item speed (default)
memory
If you prefer memory
If you prefer speed
this will read again the whole archive using read() so all entries
will be available
Limitation
=item memory
If you prefer memory
=back
It won't work for terminal, pipe or sockets or every non seekable source.
Limitation: It won't work for terminal, pipe or sockets or every non seekable
source.
=head2 $Archive::Tar::EXTRACT_BLOCK_SIZE
Expand Down

0 comments on commit 935908b

Please sign in to comment.