Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use classes rather than ids for pod error output
  • Loading branch information
haarg committed Jan 8, 2017
1 parent b373b33 commit 2ac0139
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/MetaCPAN/Pod/XHTML.pm
Expand Up @@ -159,11 +159,11 @@ sub _emit_custom_errata {

$self->{'scratch'} = $tag->(
'div',
{ id => "pod-errors" },
$tag->( 'p', { class => 'title' }, "$error_count POD Error$s" ),
{ class => "pod-errors" },
$tag->( 'p', "$error_count POD Error$s" ),
$tag->(
'div',
{ id => "pod-error-detail" },
{ class => "pod-errors-detail" },
$tag->(
'p',
'The following errors were encountered while parsing the POD:'
Expand Down

0 comments on commit 2ac0139

Please sign in to comment.