Warning: Reason support is experimental. We are looking for beta-tester and contributors.

Module Xhtml_sigs.T_01_01.Unsafe

module Unsafe : sig..end

Unsafe features. Warning using this module can break validity and may introduce security problems like code injection. Use it with care.

val data : string -> 'a Xhtml_sigs.T_01_01.elt

Insert raw text without any encoding

val node : 
  string ->
  ?a:'a Xhtml_sigs.T_01_01.attrib list ->
  'b Xhtml_sigs.T_01_01.elt list -> 'c Xhtml_sigs.T_01_01.elt

Insert an XML node that is not implemented in this module. If it is a standard XHTML node which is missing, please report to the Ocsigen team.

val leaf : 
  string ->
  ?a:'a Xhtml_sigs.T_01_01.attrib list ->
  unit -> 'b Xhtml_sigs.T_01_01.elt

Insert an XML node without children that is not implemented in this module. If it is a standard XHTML node which is missing, please report to the Ocsigen team.

val string_attrib : string -> string -> 'a Xhtml_sigs.T_01_01.attrib

Insert an attribute that is not implemented in this module. If it is a standard XHTML attribute which is missing, please report to the Ocsigen team.

val float_attrib : string -> float -> 'a Xhtml_sigs.T_01_01.attrib

Same, for float attribute

val int_attrib : string -> int -> 'a Xhtml_sigs.T_01_01.attrib

Same, for int attribute

val uri_attrib : 
  string -> Xhtml_sigs.T_01_01.uri -> 'a Xhtml_sigs.T_01_01.attrib

Same, for URI attribute

val space_sep_attrib : 
  string -> string list -> 'a Xhtml_sigs.T_01_01.attrib

Same, for a space separated list of values

val comma_sep_attrib : 
  string -> string list -> 'a Xhtml_sigs.T_01_01.attrib

Same, for a comma separated list of values