Moved to merjis/tools/wiki.
[cocanwiki.git] / scripts / wikilib.mli
1 (* Library of functions useful for people implementing a Wiki.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: wikilib.mli,v 1.1 2004/09/07 10:14:10 rich Exp $
5  *)
6
7 type genurl_error_t = GenURL_OK of string
8                     | GenURL_TooShort
9                     | GenURL_BadURL
10                     | GenURL_Duplicate of string
11
12 val generate_url_of_title : Dbi.connection -> int -> string -> genurl_error_t
13
14 val xhtml_of_content : Dbi.connection -> int -> string -> string
15
16 val text_of_xhtml : string -> string