diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 17:41:41 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 17:41:41 +0000 |
commit | bed171dfce7f6c0bdb7207be32c058f4d36fc432 (patch) | |
tree | 8e9b969a936003af592f08a46cdb8b8ad41e1790 /pod | |
parent | 453f904417cdcc40c685b37c28b80ff4c89a1c40 (diff) | |
download | perl-bed171dfce7f6c0bdb7207be32c058f4d36fc432.tar.gz |
tests, doc tweak (from Gisle Aas)
p4raw-id: //depot/perl@5153
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlfaq9.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq9.pod b/pod/perlfaq9.pod index 7fc0cdc3c1..c30ff20479 100644 --- a/pod/perlfaq9.pod +++ b/pod/perlfaq9.pod @@ -77,7 +77,7 @@ stamp prepended. =head2 How do I remove HTML from a string? The most correct way (albeit not the fastest) is to use HTML::Parser -from CPAN (part of the HTML-Tree package on CPAN). Another correct +from CPAN. Another mostly correct way is to use HTML::FormatText which not only removes HTML but also attempts to do a little simple formatting of the resulting plain text. @@ -219,7 +219,7 @@ all the non-alphanumunder character (C<\W>) into their hex escapes. It's important that characters with special meaning like C</> and C<?> I<not> be translated. Probably the easiest way to get this right is to avoid reinventing the wheel and just use the URI::Escape module, -which is part of the libwww-perl package (LWP) available from CPAN. +available from CPAN. =head2 How do I redirect to another page? |