Module Ez_html.Xml_lexer
type error=|EUnterminatedComment|EUnterminatedString|EIdentExpected|ECloseExpected|ENodeExpected|EAttributeNameExpected|EAttributeValueExpected|EUnterminatedEntitytype dtd_error=|EInvalidDTDDecl|EInvalidDTDTag|EDTDItemExpected|EInvalidDTDElement|EInvalidDTDAttribute
type dtd_decl=|DTDFile of string|DTDData of Xml_types.dtdtype token=|Tag of string * (string * string) list * bool|PCData of string|Endtag of string|DocType of string * dtd_decl|Eoftype pos= int * int * int * int
val init : Stdlib.Lexing.lexbuf -> unitval close : Stdlib.Lexing.lexbuf -> unitval token : Stdlib.Lexing.lexbuf -> tokenval dtd : Stdlib.Lexing.lexbuf -> Xml_types.dtdval pos : Stdlib.Lexing.lexbuf -> posval restore : pos -> unit