From 28d123ff109663ac8849ef0c83f6f2e22bdcd88c Mon Sep 17 00:00:00 2001 From: Clombrong Date: Thu, 19 Jun 2025 12:08:19 +0200 Subject: feat: new module Xml --- lib/xml.ml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lib/xml.ml (limited to 'lib/xml.ml') diff --git a/lib/xml.ml b/lib/xml.ml new file mode 100644 index 0000000..8b99049 --- /dev/null +++ b/lib/xml.ml @@ -0,0 +1,6 @@ +type element = { + namespace : string; + local_name : string; + attributes : (string * string) list; + children : (element, string) Either.t list; + } -- cgit v1.2.3