6 use Test::More tests => 4;
11 use_ok('IkiWiki::Plugin::mdwn');
12 use_ok('IkiWiki::Plugin::textile');
15 subtest 'Text::Textile apparently double-escapes HTML entities in hrefs' => sub {
16 my $text = q{Gödel, Escher, Bach};
17 my $href = q{https://en.wikipedia.org/wiki/Gödel,_Escher,_Bach};
18 my $good = qq{<p><a href="$href">$text</a></p>};
20 chomp(my $mdwn_html = IkiWiki::Plugin::mdwn::htmlize(
21 content => qq{[$text]($href)},
23 is($mdwn_html, $good);
25 chomp(my $txtl_html = IkiWiki::Plugin::textile::htmlize(
26 content => qq{"$text":$href},
28 isnt($txtl_html, $good);
29 is($txtl_html, q{<p><a href="https://en.wikipedia.org/wiki/G&ouml;del,_Escher,_Bach">Gödel, Escher, Bach</a></p>});