在使用Mojo :: DOM处理HTML文档时,如何最可靠地保留HTML实体?

问题描述 投票:4回答:2

我正在使用Mojo::DOM来识别和打印数百个HTML文档中的短语(意思是所选HTML标签之间的文本串),这些HTML文档是我从Movable Type内容管理系统中的现有内容中提取的。

我正在将这些短语写到文件中,因此可以将它们翻译成其他语言,如下所示:

        $dom = Mojo::DOM->new(Mojo::Util::decode('UTF-8', $page->text));

    ##########
    #
    # Break down the Body into phrases. This is done by listing the tags and tag combinations that
    # surround each block of text that we're looking to capture.
    #
    ##########

        print FILE "\n\t### Body\n\n";        

        for my $phrase ( $dom->find('h1, h2, h2 b, h3, p, p strong, span, a, caption, th, li, li a')->map('text')->each ) {

            print_phrase($phrase); # utility function to write out the phrase to a file

        }

当Mojo :: DOM遇到嵌入式HTML实体(例如™ )时,它将这些实体转换为编码字符,而不是像写入那样传递。我希望实体按照书面形式传递。

我认识到我可以使用Mojo :: Util :: decode将这些HTML实体传递给我正在编写的文件。问题是“You can only call decode 'UTF-8' on a string that contains valid UTF-8.如果没有,例如因为它已经转换为Perl字符,它将返回undef。”

如果是这种情况,我必须在调用Mojo::Util::decode('UTF-8', $page->text)之前尝试弄清楚如何测试当前HTML页面的编码,或者我必须使用其他一些技术来保留编码的HTML实体。

在使用Mojo :: DOM处理HTML文档时,如何最可靠地保留编码的HTML实体?

perl html-entities mojolicious movabletype
2个回答
3
投票

看起来当您映射到文本时,您可以替换XML实体,但是当您使用节点并使用其内容时,将保留实体。这个最小的例子:

#!/usr/bin/perl
use strict;
use warnings;
use Mojo::DOM;

my $dom = Mojo::DOM->new('<p>this &amp; &quot;that&quot;</p>');
for my $phrase ($dom->find('p')->each) {
    print $phrase->content(), "\n";
}

打印:

this &amp; &quot;that&quot;

如果你想保持你的循环和地图,用map('text')替换map('content'),如下所示:

for my $phrase ($dom->find('p')->map('content')->each) {

如果您有嵌套标签并且只想查找文本(但不打印那些嵌套标签名称,只打印它们的内容),则需要扫描DOM树:

#!/usr/bin/perl
use strict;
use warnings;
use Mojo::DOM;

my $dom = Mojo::DOM->new('<p><i>this &amp; <b>&quot;</b><b>that</b><b>&quot;</b></i></p><p>done</p>');

for my $node (@{$dom->find('p')->to_array}) {
    print_content($node);
}

sub print_content {
    my ($node) = @_;
    if ($node->type eq "text") {
        print $node->content(), "\n";
    }
    if ($node->type eq "tag") {    
        for my $child ($node->child_nodes->each) {
            print_content($child);
        }
    }
}

打印:

this & 
"
that
"
done

0
投票

通过测试,我和我的同事能够确定Mojo::DOM->new()自动解码&符号(&),使HTML实体的保存不可能。为了解决这个问题,我们添加了以下子程序来对符号进行双重编码:

sub encode_amp {
    my ($text) = @_;

    ##########
    #
    # We discovered that we need to encode ampersand
    # characters being passed into Mojo::DOM->new() to avoid HTML entities being decoded
    # automatically by Mojo::DOM::Util::html_unescape().
    #
    # What we're doing is calling $dom = Mojo::DOM->new(encode_amp($string)) which double encodes
    # any incoming ampersand or &amp; characters.
    #
    #
    ##########   

    $text .= '';           # Suppress uninitialized value warnings
    $text =~ s!&!&amp;!g;  # HTML encode ampersand characters
    return $text;
}

稍后在脚本中,我们通过$page->text传递encode_amp(),因为我们实例化了一个新的Mojo::DOM对象。

    $dom = Mojo::DOM->new(encode_amp($page->text));

##########
#
# Break down the Body into phrases. This is done by listing the tags and tag combinations that
# surround each block of text that we're looking to capture.
#
# Note that "h2 b" is an important tag combination for capturing major headings on pages
# in this theme. The tags "span" and "a" are also.
#
# We added caption and th to support tables.
#
# We added li and li a to support ol (ordered lists) and ul (unordered lists).
#
# We got the complicated map('descendant_nodes') logic from @Grinnz on StackOverflow, see:
# https://stackoverflow.com/questions/55130871/how-do-i-most-reliably-preserve-html-entities-when-processing-html-documents-wit#comment97006305_55131737
#
#
# Original set of selectors in $dom->find() below is as follows:
#   'h1, h2, h2 b, h3, p, p strong, span, a, caption, th, li, li a'
#
##########

    print FILE "\n\t### Body\n\n";        

    for my $phrase ( $dom->find('h1, h2, h2 b, h3, p, p strong, span, a, caption, th, li, li a')->
        map('descendant_nodes')->map('each')->grep(sub { $_->type eq 'text' })->map('content')->uniq->each ) {           

        print_phrase($phrase);

    }

上面的代码块包含了@Grinnz之前的建议,如本问题的评论中所示。还要感谢@Robert的回答,他对Mojo::DOM的工作方式有很好的了解。

这段代码绝对适用于我的应用程序。

© www.soinside.com 2019 - 2024. All rights reserved.