Skip to content

Commit

Permalink
fix double HTML escaping of title, moritz--
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Aug 10, 2012
1 parent ecd7cf3 commit 284cc49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Pod/To/HTML.pm
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ sub pod2html($pod, :&url = -> $url { $url }, :$head = '', :$header = '', :$foote
&OUTER::url = &url;
@body.push: node2html($pod.map: {visit $_, :assemble(&assemble-list-items)});

my $title_html = escape_html($title // 'Pod document');
my $title_html = $title // 'Pod document';

# TODO: make this look nice again when q:to"" gets implemented
my @prelude = (
Expand Down

0 comments on commit 284cc49

Please sign in to comment.