| HTML-FormatText-WithLinks documentation | Contained in the HTML-FormatText-WithLinks distribution. |
HTML::FormatText::WithLinks - HTML to text conversion with links as footnotes
use HTML::FormatText::WithLinks;
my $f = HTML::FormatText::WithLinks->new();
my $html = qq(
<html>
<body>
<p>
Some html with a <a href="http://example.com/">link</a>
</p>
</body>
</html>
);
my $text = $f->parse($html);
print $text;
# results in something like
Some html with a [1]link
1. http://example.com/
my $f2 = HTML::FormatText::WithLinks->new(
before_link => '',
after_link => ' [%l]',
footnote => ''
);
$text = $f2->parse($html);
print $text;
# results in something like
Some html with a link [http://example.com/]
my $f3 = HTML::FormatText::WithLinks->new(
link_num_generator => sub {
return "*" x (shift() + 1);
},
footnote => '[%n] %l'
);
$text = $f3->parse($html);
print $text;
# results in something like
Some html with a [*]link
[*] http://example.com/
HTML::FormatText::WithLinks takes HTML and turns it into plain text but prints all the links in the HTML as footnotes. By default, it attempts to mimic the format of the lynx text based web browser's --dump option.
my $f = HTML::FormatText::WithLinks->new( %options );
Returns a new instance. It accepts all the options of HTML::FormatText plus
a base option. This should be set to a URI which will be used to turn any relative URIs on the HTML to absolute ones.
If a base element is found in the document and it has an href attribute then setting doc_overrides_base to true will cause the document's base to be used. This defaults to false.
a string to print before a link (i.e. when the <a> is found), after link has ended (i.e. when then </a> is found) and when printing out footnotes.
"%n" will be replaced by the link number, "%l" will be replaced by the link itself.
If footnote is set to '', no footnotes will be printed.
link_num_generator is a sub that returns the value to be printed for a given link number. The internal store starts numbering at 0.
If set to 1 then italicised text will be surrounded by / and bolded text by
_. You can change these markers by using the italic_marker and
bold_marker options.
If set to 1 then will only generate 1 footnote per unique URI as oppose to the default behaviour which is to generate a footnote per URI.
If set to 0 then links pointing to local anchors will be skipped. The default behaviour is to include all links.
If set to 1, then links where the text equals the href value will be skipped. The default behaviour is to include all links.
my $text = $f->parse($html);
Takes some HTML and returns it as text. Returns undef on error.
Will also return undef if you don't pass it undef. Returns an empty string if passed an empty string.
my $text = $f->parse_file($filename);
Takes a filename and returns the contents of the file as plain text. Returns undef on error.
$f->error();
Returns the last error that occured. In practice this is likely to be either a warning that parse_file couldn't find the file or that HTML::TreeBuilder failed.
When passing HTML fragments the results may be a little unpredictable. I've tried to work round the most egregious of the issues but any unexpected results are welcome.
Also note that if for some reason there is an a tag in the document that does not have an href attribute then it will be quietly ignored. If this is really a problem for anyone then let me know and I'll see if I can think of a sensible thing to do in this case.
Struan Donald. <struan@cpan.org>
Ian Malpass <ian@indecorous.com> was responsible for the custom formatting bits and the nudge to release the code.
Simon Dassow <janus@errornet.de<gt> for the anchor_links option plus a few bugfixes and optimisations
Kevin Ryde for the code for pulling the base out the document.
Thomas Sibley <trs@bestpractical.com> patches for skipping links that are their urls and to change the delimiters for bold and italic text..
Copyright (C) 2003-2010 Struan Donald and Ian Malpass. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
perl(1), HTML::Formatter.
| HTML-FormatText-WithLinks documentation | Contained in the HTML-FormatText-WithLinks distribution. |
package HTML::FormatText::WithLinks; use strict; use URI::WithBase; use HTML::TreeBuilder; use base qw(HTML::FormatText); use vars qw($VERSION); $VERSION = '0.14'; sub new { my $proto = shift; my $class = ref( $proto ) || $proto; my $self = $class->SUPER::new( @_ ); $self->configure() unless @_; bless ( $self, $class ); return $self; } sub configure { my ($self, $hash) = @_; # a base uri so we can resolve relative uris $self->{base} = $hash->{base}; delete $hash->{base}; $self->{base} =~ s#(.*?)/[^/]*$#$1/# if $self->{base}; $self->{doc_overrides_base} = $hash->{doc_overrides_base}; delete $hash->{doc_overrides_base}; $self->{before_link} = '[%n]'; $self->{after_link} = ''; $self->{footnote} = '%n. %l'; $self->{link_num_generator} = sub { return shift() + 1 }; $self->{unique_links} = 0; $self->{anchor_links} = 1; $self->{skip_linked_urls} = 0; $self->{_link_track} = {}; $self->{bold_marker} = '_'; $self->{italic_marker} = '/'; foreach ( qw( before_link after_link footnote link_num_generator with_emphasis bold_marker italic_marker unique_links anchor_links skip_linked_urls ) ) { $self->{ $_ } = $hash->{ $_ } if exists $hash->{ $_ }; delete $hash->{ $_ }; } $self->SUPER::configure($hash); } # we need to do this as if you pass an HTML fragment without any # containing block level markup (e.g. a p tag) then no indentation # takes place so if we've not got a cur_pos we indent. sub textflow { my $self = shift; $self->goto_lm unless defined $self->{cur_pos}; $self->SUPER::textflow(@_); } sub head_start { my ($self) = @_; $self->SUPER::head_start(); # we don't care about what the documens says it's base is if ( $self->{base} and not $self->{doc_overrides_base} ) { return 0; } # descend into <head> for possible <base> there, even if superclass not # interested (as of HTML::FormatText 2.04 it's not) return 1; } # <base> is supposed to be inside <head>, but no need to demand that. # "lynx -source" sticks a <base> at the very start of the document, before # even <html>, so accepting <base> anywhere lets that work. sub base_start { my ($self, $node) = @_; if (my $href = $node->attr('href')) { $self->{base} = $href; } # allow for no superclass base_start() in HTML::FormatText 2.04 if (! HTML::FormatText->can('base_start')) { return 0; } # chain up if it exists in the future return $self->SUPER::base_start(); } sub a_start { my $self = shift; my $node = shift; # local urls are no use so we have to make them absolute my $href = $node->attr('href') || ''; if ($href && $self->{anchor_links} == 0 && $href =~ m/^#/o) { $href = ''; } elsif ($href and $self->{skip_linked_urls} and $href eq $node->as_text) { $href = ''; } if ( $href ) { if ($href !~ m#^https?:|^mailto:#o) { $href = URI::WithBase->new($href, $self->{base})->abs(); } if ($self->{unique_links}) { if (defined $self->{_link_track}->{$href}) { $self->out( $self->text('before_link', $self->{_link_track}->{$href}, $href ) ); } else { push @{$self->{_links}}, $href; $self->{_link_track}->{$href} = $#{$self->{_links}}; $self->out( $self->text('before_link', $#{$self->{_links}}, $href ) ); } } else { push @{$self->{_links}}, $href; $self->out( $self->text('before_link') ); } } $self->SUPER::a_start(); } sub a_end { my $self = shift; my $node = shift; my $text; unless ($self->{skip_linked_urls} and $node->attr('href') eq $node->as_text) { if ($self->{unique_links}) { my $href = $node->attr('href'); $text = $self->text('after_link', $self->{_link_track}->{$href}, $href); } else { $text = $self->text('after_link'); } # If we're just dealing with a fragment of HTML, with a link at the # end, we get a space before the first footnote link if we do # $self->out( '' ) if ($text ne '') { $self->out( $text ); } } $self->SUPER::a_end(); } sub b_start { my $self = shift; $self->out( $self->{'bold_marker'} ) if $self->{ with_emphasis }; $self->SUPER::b_start(); } sub b_end { my $self = shift; $self->out( $self->{'bold_marker'} ) if $self->{ with_emphasis }; $self->SUPER::b_end(); } sub i_start { my $self = shift; $self->out( $self->{'italic_marker'} ) if $self->{ with_emphasis }; $self->SUPER::i_start(); } sub i_end { my $self = shift; $self->out( $self->{'italic_marker'} ) if $self->{ with_emphasis }; $self->SUPER::i_end(); } # print out our links sub html_end { my $self = shift; if ( $self->{_links} and @{$self->{_links}} and $self->{footnote} ) { $self->nl; $self->nl; # be tidy $self->goto_lm; for (0 .. $#{$self->{_links}}) { $self->goto_lm; $self->out( $self->text( 'footnote', $_, $self->{_links}->[$_] ) ); $self->nl; } } $self->SUPER::end(); } sub _link_num { my ($self, $num) = @_; $num = $#{$self->{_links}} unless defined $num; return &{$self->{link_num_generator}}($num); } sub text { my ($self, $type, $num, $href) = @_; if ($self->{_links} and @{$self->{_links}}) { $href = $self->{_links}->[$#{$self->{_links}}] unless (defined $num and defined $href); } $num = $self->_link_num($num); my $text = $self->{$type}; $text =~ s/%n/$num/g; $text =~ s/%l/$href/g; return $text; } sub parse { my $self = shift; my $text = shift; return undef unless defined $text; return '' if $text eq ''; my $tree = HTML::TreeBuilder->new->parse( $text ); return $self->_parse( $tree ); } sub parse_file { my $self = shift; my $file = shift; unless (-e $file and -f $file) { $self->error("$file not found or not a regular file"); return undef; } my $tree = HTML::TreeBuilder->new->parse_file( $file ); return $self->_parse( $tree ); } sub _parse { my $self = shift; my $tree = shift; $self->{_link_track} = {}; $self->{_links} = []; unless ( $tree ) { $self->error( "HTML::TreeBuilder problem" . ( $! ? ": $!" : '' ) ); return undef; } $tree->eof(); my $return_text = $self->format( $tree ); $tree->delete; return $return_text; } sub error { my $self = shift; if (@_) { $self->{error} = shift; } return $self->{error}; } 1; __END__