File: htmlparse.mli

package info (click to toggle)
hevea 2.29-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,472 kB
  • ctags: 2,504
  • sloc: ml: 18,983; sh: 382; makefile: 301; ansic: 132
file content (20 lines) | stat: -rw-r--r-- 1,069 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(***********************************************************************)
(*                                                                     *)
(*                          HEVEA                                      *)
(*                                                                     *)
(*  Luc Maranget, projet Moscova, INRIA Rocquencourt                   *)
(*                                                                     *)
(*  Copyright 2001 Institut National de Recherche en Informatique et   *)
(*  Automatique.  Distributed only by permission.                      *)
(*                                                                     *)
(*  $Id: htmlparse.mli,v 1.5 2006-10-09 08:25:16 maranget Exp $        *)
(***********************************************************************)
exception Error of string

module Make(C:DoOut.Config) : sig
  val ptop : unit -> unit
  val reset : unit -> unit
  val main :
      Emisc.Strings.t option -> Lexing.lexbuf -> Lexeme.style Tree.t list
  val classes :  Lexing.lexbuf -> Emisc.Strings.t
end