[% DEFAULT htmlout_prefix = "HTML Output" -%]
[% USE wrap -%]
[% WRAPPER html/cell %]
    <b>[% htmlout_prefix %] #[% n %]:</b>
    <ul>
    <pre>[% INCLUDE $file 
	    | replace('\n+', "\n")	    # collapse empty lines
	    | wrap(80)			    # wrap text
            | html			    # escape HTML
	    | replace('&lt;!--', '<b>&lt;!--')
	    | replace('--&gt;', '--&gt;</b>')
    %]</pre>
    </ul>
[% END %]