(* *)
(******************************************************************************)
-let domImpl = Gdome.domImplementation ();;
-let helmns = Gdome.domString "http://www.cs.unibo.it/helm";;
+let domImpl = Gdome.domImplementation ()
+let helm_ns = Gdome.domString "http://www.cs.unibo.it/helm"
+let xlink_ns = Gdome.domString "http://www.w3.org/1999/xlink"
(* TODO BRRRRR .... *)
(** strip first 4 line of a string, used to strip xml declaration and doctype
let xml_headings_RE = Pcre.regexp "^.*\n.*\n.*\n.*\n" in
fun s ->
Pcre.replace ~rex:xml_headings_RE s
-;;
(* TODO rename this module into at least something like CicMisc *)
val domImpl : Gdome.domImplementation
-val helmns : Gdome.domString
+val helm_ns : Gdome.domString (** HELM namespace *)
+val xlink_ns : Gdome.domString (** XLink namespace *)
val strip_xml_headings: string -> string