diff options
author | Amitai Schlair <schmonz-web-ikiwiki@schmonz.com> | 2014-12-22 22:43:40 -0500 |
---|---|---|
committer | Amitai Schlair <schmonz-web-ikiwiki@schmonz.com> | 2014-12-22 22:43:40 -0500 |
commit | 97f8b33c1a65fbd1e409e073ec152661e8bff74c (patch) | |
tree | d20a8947daddfd65d71ed81273cecc43e6a55478 | |
parent | 0dc2b3844d77c23173d1274e897adb7065923c4f (diff) | |
download | ikiwiki-97f8b33c1a65fbd1e409e073ec152661e8bff74c.tar ikiwiki-97f8b33c1a65fbd1e409e073ec152661e8bff74c.tar.gz |
Document an annoying Text::Textile encoding bug.
-rwxr-xr-x | t/textile-double-escape-bug.t | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/t/textile-double-escape-bug.t b/t/textile-double-escape-bug.t new file mode 100755 index 000000000..fe73f331b --- /dev/null +++ b/t/textile-double-escape-bug.t @@ -0,0 +1,30 @@ +#!/usr/bin/perl + +use warnings; +use strict; + +use Test::More tests => 4; +use utf8; + +BEGIN { + use_ok('IkiWiki'); + use_ok('IkiWiki::Plugin::mdwn'); + use_ok('IkiWiki::Plugin::textile'); +}; + +subtest 'Text::Textile apparently double-escapes HTML entities in hrefs' => sub { + my $text = q{Gödel, Escher, Bach}; + my $href = q{https://en.wikipedia.org/wiki/Gödel,_Escher,_Bach}; + my $good = qq{<p><a href="$href">$text</a></p>}; + + chomp(my $mdwn_html = IkiWiki::Plugin::mdwn::htmlize( + content => qq{[$text]($href)}, + )); + is($mdwn_html, $good); + + chomp(my $txtl_html = IkiWiki::Plugin::textile::htmlize( + content => qq{"$text":$href}, + )); + isnt($txtl_html, $good); + is($txtl_html, q{<p><a href="https://en.wikipedia.org/wiki/G&ouml;del,_Escher,_Bach">Gödel, Escher, Bach</a></p>}); +}; |