Detect-It-Easy/db/Text/HTML.1.sg
2014-09-19 13:58:34 +02:00

14 lines
301 B
Text

// DIE's signature file
init("source","HTML");
function detect(bShowType,bShowVersion,bShowOptions)
{
var sText=Text.getString(0,Math.min(Text.getSize(),8192));
if(/^<(!DOCTYPE )?html/m.test(sText))
{
bDetected=1;
}
return result(bShowType,bShowVersion,bShowOptions);
}