aboutsummaryrefslogtreecommitdiff
path: root/lib/xml.ml
diff options
context:
space:
mode:
authorClombrong <cromblong@egregore.fun>2025-06-19 12:08:19 +0200
committerClombrong <cromblong@egregore.fun>2025-06-19 16:51:09 +0200
commit28d123ff109663ac8849ef0c83f6f2e22bdcd88c (patch)
treedcab029af8d93089055db2b1f1a198ae3227d352 /lib/xml.ml
parent74e505159a78e72c817f48131e5267b1e3388400 (diff)
feat: new module Xml
Diffstat (limited to 'lib/xml.ml')
-rw-r--r--lib/xml.ml6
1 files changed, 6 insertions, 0 deletions
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;
+ }