The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use warnings;
use strict;
require 't/LintTest.pl';

checkit( [
    [ 'doc-tag-required' => qr/<html> tag is required/ ],
], [<DATA>] );

__DATA__
<!-- doc-tag-required -->
    <HEAD>
	<TITLE>Test stuff</TITLE>
    </HEAD>
    <BODY BGCOLOR="white">
	<P>This is my paragraph</P>
    </BODY>