From 088f79ffa185b78c52ed6ba0e91b7f23c5e7f027 Mon Sep 17 00:00:00 2001 From: Joseph Donaldson Date: Fri, 2 Jan 2026 10:25:45 -0800 Subject: [PATCH] add support for periods in xml attribute names This came up when parsing graphml files, which have attribute names such as attr.name and attr.type. --- api/web/src/Llib/xml.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/web/src/Llib/xml.scm b/api/web/src/Llib/xml.scm index 4918a6dd3..ca3d961e2 100644 --- a/api/web/src/Llib/xml.scm +++ b/api/web/src/Llib/xml.scm @@ -245,7 +245,7 @@ ;* attribute-grammar ... */ ;*---------------------------------------------------------------------*/ (define attribute-grammar - (regular-grammar ((id (: (in ("azAZ") "_") (* (in ("azAZ09") ":_-")))) + (regular-grammar ((id (: (in ("azAZ") "_") (* (in ("azAZ09") ":_-.")))) tag strict decoder)