-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhtmllex.mli
21 lines (19 loc) · 1.03 KB
/
htmllex.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(***********************************************************************)
(* *)
(* HEVEA *)
(* *)
(* Luc Maranget, projet Moscova, INRIA Rocquencourt *)
(* *)
(* Copyright 2001 Institut National de Recherche en Informatique et *)
(* Automatique. Distributed only by permission. *)
(* *)
(***********************************************************************)
val to_string : Lexeme.token -> string
val cost : Lexeme.style -> int * int
module Make(C:DoOut.Config) : sig
val ptop : unit -> unit
val reset : unit -> unit
val next_token : Lexing.lexbuf -> Lexeme.token
val styles : Lexing.lexbuf -> Css.id list
val classes : Lexing.lexbuf -> Emisc.Strings.t
end