mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-06 11:15:35 -05:00
doc
This commit is contained in:
parent
5a156490ab
commit
6cf05bc733
2 changed files with 12 additions and 1 deletions
|
|
@ -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 *)
|
||||
include Tiny_httpd_html_
|
||||
|
||||
|
|
|
|||
|
|
@ -281,7 +281,10 @@ let prelude = {|
|
|||
(** Output for HTML combinators.
|
||||
|
||||
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
|
||||
type t
|
||||
val create : unit -> t
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue