@tags = (
	 "tt", "i", "b", "u", "strike", "big", "small", "sub", "sup",
	 "em", "strong", "dfn", "code", "samp", "kbd", "var", "cite",
	 "font",
	 "basefont",
	 "br",
	 "body",
	 "address",
	 "div",
	 "center",
	 "a",
	 "map",
	 "area",
	 "link",
	 "img",
	 "applet",
	 "param",
	 "hr",
	 "p",
	 "h1", "h2", "h3", "h4", "h5", "h6",
	 "pre",
	 "xmp", "listing",
	 "plaintext",
	 "blockquote",
	 "dl",
	 "dt",
	 "dd",
	 "ol", "ul",
	 "dir", "menu",
	 "li",
	 "form",
	 "input",
	 "select",
	 "option",
	 "textarea",
	 "table",
	 "tr",
	 "th", "td",
	 "caption",
	 "head",
	 "title",
	 "isindex",
	 "base",
	 "meta",
	 "style",
	 "script",
	 "html",
	 );

%alias = (
	  "h2", "h1",
	  "h3", "h1",
	  "h4", "h1",
	  "h5", "h1",
	  "h6", "h1",
	  "th", "td",
	  "thead", "tr",
	  "tbody", "tr",
	  "tfoot", "tr",
	  );

$a_color = "aqua|black|blue|fuchsia|gray|green|lime|maroon|navy|olive|purple|red|silver|teal|white|yellow|(#[0-9a-zA-Z]{6})";

%attrvals = (
	     "font.size", ".*",
	     "font.color", $a_color,

	     "basefont.size", ".*",

	     "br.clear", "left|all|right|none",

	     "body.background", ".*",
	     "body.bgcolor", $a_color,
	     "body.text", $a_color,
	     "body.link", $a_color,
	     "body.vlink", $a_color,
	     "body.alink", $a_color,

	     "div.align", "left|center|right",

	     "a.name", ".*",
	     "a.href", ".*",
	     "a.rel", ".*",
	     "a.rev", ".*",
	     "a.title", ".*",

	     "map.name", ".*",

	     "area.shape", "rect|circle|poly",
	     "area.coords", ".*",
	     "area.href", ".*",
	     "area.nohref", "",
	     "area.alt", ".*",

	     "link.href", ".*",
	     "link.rel", ".*",
	     "link.rev", ".*",
	     "link.title", ".*",

	     "img.src", ".*",
	     "img.alt", ".*",
	     "img.align", "top|middle|bottom|left|right",
	     "img.height", "[0-9]+",
	     "img.width", "[0-9]+",
	     "img.border", "[0-9]+",
	     "img.hspace", "[0-9]+",
	     "img.vspace", "[0-9]+",
	     "img.usemap", ".*",
	     "img.ismap", "",

	     "applet.codebase", ".*",
	     "applet.code", ".*",
	     "applet.alt", ".*",
	     "applet.name", ".*",
	     "applet.width", "[0-9]+",
	     "applet.height", "[0-9]+",
	     "applet.align", "top|middle|bottom|left|right",
	     "applet.hspace", "[0-9]+",
	     "applet.vspace", "[0-9]+",

	     "param.name", ".*",
	     "param.value", ".*",

	     "hr.align", "left|right|center",
	     "hr.noshade", "",
	     "hr.size", "[0-9]+",
	     "hr.width", "[0-9]+%?",

	     "p.align", "left|center|right",

	     "h1.align", "left|center|right",

	     "dl.compact", "",

	     "ol.type", "1|a|A|i|I",
	     "ol.start", "[0-9]+",
	     "ol.compact", "",

	     "ul.type", "disc|square|circle",
	     "ul.compact", "",

	     "dir.compact", "",

	     "menu.compact", "",

	     "li.type", "1|a|A|i|I|disc|square|circle",
	     "li.value", "[0-9]+",

	     "form.action", ".*",
	     "form.method", "get|post",
	     "form.enctype", "application/x-www-form-urlencoded",

	     "input.type", "text|password|checkbox|radio|submit|reset|file|hidden|image",
	     "input.name", ".*",
	     "input.value", ".*",
	     "input.checked", "",
	     "input.size", ".*",
	     "input.maxlength", "[0-9]+",
	     "input.src", ".*",
	     "input.align", "top|middle|bottom|left|right",

	     "select.name", ".*",
	     "select.size", "[0-9]+",
	     "select.multiple", "",

	     "option.selected", "",
	     "option.value", ".*",

	     "textarea.name", ".*",
	     "textarea.rows", "[0-9]+",
	     "textarea.cols", "[0-9]+",

	     "table.align", "left|center|right",
	     "table.width", "[0-9]+%?",
	     "table.border", "[0-9]+",
	     "table.cellspacing", "[0-9]+",
	     "table.cellpadding", "[0-9]+",

	     "caption.align", "top|bottom",

	     "tr.align", "left|center|right",
	     "tr.valign", "top|middle|bottom",

	     "td.nowrap", "",
	     "td.rowspan", "[0-9]+",
	     "td.colspan", "[0-9]+",
	     "td.align", "left|center|right",
	     "td.valign", "top|middle|bottom",
	     "td.width", "[0-9]+",
	     "td.height", "[0-9]+",

	     "isindex.prompt", ".*",

	     "base.href", ".*",

	     "meta.http-equiv", ".*",
	     "meta.name", ".*",
	     "meta.content", ".*",

	     "html.version", ".*",
	     );

1;
