This commit is contained in:
Simon Cruanes 2022-03-16 22:52:53 -04:00
parent 5a156490ab
commit 6cf05bc733
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 12 additions and 1 deletions

View file

@ -1,4 +1,12 @@
(** HTML combinators.
This module provides combinators to produce html. It doesn't enforce
the well-formedness of the html, unlike Tyxml, but it's simple and should
be reasonably efficient.
@since NEXT_RELEASE
*)
(** @inline *) (** @inline *)
include Tiny_httpd_html_ include Tiny_httpd_html_

View file

@ -281,7 +281,10 @@ let prelude = {|
(** Output for HTML combinators. (** Output for HTML combinators.
This output type is used to produce a string reasonably efficiently from This output type is used to produce a string reasonably efficiently from
a tree of combinators. *) a tree of combinators.
@since NEXT_RELEASE
@open *)
module Out : sig module Out : sig
type t type t
val create : unit -> t val create : unit -> t