Module Pxp_codewriter


module Pxp_codewriter: sig .. end
Generate O'Caml code for creating large constant XML trees


See also Pxp_marshal for direct marshalling functions.
val write_document : Pervasives.out_channel ->
('a Pxp_document.node #Pxp_document.extension as 'a) Pxp_document.document ->
unit
Writes O'Caml code to the out_channel so that when the code is compiled and executed, a fresh document is created with the same contents as the passed document:

 "let create_document ?enable_namespace_processing config spec = ...;;" 

If you compile the code and call create_document config spec the function creates a document tree which is (almost) equal to the passed document.

The following properties may not be equal:


val write_subtree : Pervasives.out_channel ->
('a Pxp_document.node #Pxp_document.extension as 'a) Pxp_document.node ->
unit
Writes O'Caml code to the out_channel so that when the code is compiled and executed, a fresh tree is created with the same contents as the passed tree:

 "let create_subtree dtd spec = ...;;" 

If you compile the code and call create_subtree dtd spec the function creates a DTD object which is equal to the passed object.