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

Module Xhtmlcompact

module Xhtmlcompact: sig..end

XHTML "compact printing" (no pretty printing, no line breaks added)


val xhtml_print :
   ?header:string ->
    ?version:[< XHTML.M.doctypes > `XHTML_01_01 ] ->
    ?encode:(string -> string) ->
    ?html_compat:bool -> [ `Html ] XHTML.M.elt -> string

Ocsigen's compact printer for xhtml. html_compat is an option to set if you want to print with a syntax closer to html (not xml).

val xhtml_list_print :
   ?header:string ->
    ?version:[< XHTML.M.doctypes > `XHTML_01_01 ] ->
    ?encode:(string -> string) ->
    ?html_compat:bool -> 'a XHTML.M.elt list -> string

Ocsigen's compact printer for xhtml portions. html_compat is an option to set if you want to print with a syntax closer to html (not xml).