Up

module Svg

: sig

Typesafe constructors and printers for SVG documents.

See also http://www.w3.org/TR/SVG W3C Recommendation
#
module M : Svg_sigs.Make(Xml).T

Concrete implementation of SVG typesafe constructors

#
module P : Xml_sigs.Typed_simple_printer with type 'a elt := 'a M.elt and type doc := M.doc

Simple printer for SVG documents

#
module Make_printer : functor (O : Xml_sigs.Output) -> Xml_sigs.Typed_printer with type out := O.out and type 'a elt := 'a M.elt and type doc := M.doc

Parametrized stream printer for SVG documents

end