id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,lang,patch,platform
634,Docs to html incorrect in pdd07_codingstd.pod,mikehh,,"Problem with html in docs/html/docs/ppds/pdd07_codingstd.pod.html

C<Interp* foo> becomes <code>Interp *foo</code>

In pdd07_codingstd.pod (lines 155-158)
{{{
=item *

Pointer types should be written with separation between the star and the base
type, e.g. C<Interp *foo>, but not C<Interp* foo>.

}}}

generates in pdd07_codingstd.pod.html (line 146)
{{{
<li>Pointer types should be written with separation between the star and the base type, e.g. <code>Interp *foo</code>, but not <code>Interp *foo</code>.</li>

}}}



I think the problem is at line 217 of POD2HTML.pm
{{{
        # Tidy up the C reference *s.
        $text =~ s|\b\s*\*\s+\b| \*|gs;

}}}
",bug,closed,normal,,docs,trunk,medium,fixed,,,,,
