From 127e6f7c4099b3ac9b3d4ba197b8d1f584d8f8d0 Mon Sep 17 00:00:00 2001 From: ChouJ Date: Mon, 1 Jun 2026 09:48:38 +0800 Subject: [PATCH] fix demo XML declaration parsing option --- index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.html b/index.html index 9abfd5c4..129cae8c 100644 --- a/index.html +++ b/index.html @@ -69,6 +69,7 @@

Parsing options

Ignore attributes
Group all the attributes
Allow Boolean Attributes
+ Ignore XML declaration
Parse attribute's value to float / integer / boolean.
Parse text-node's value to float / integer / boolean.
Remove namespace string from tag and attribute names.
@@ -203,6 +204,7 @@

Note!!

attributesGroupName: $("#attributesGroupName").prop("checked") ? "@" : false, textNodeName : "#text", ignoreAttributes : $("#ignoreAttributes").prop("checked"), + ignoreDeclaration: $("#ignoreDeclaration").prop("checked"), removeNSPrefix : $("#removeNSPrefix").prop("checked"), parseNodeValue : $("#parseNodeValue").prop("checked"), parseAttributeValue : $("#parseAttributeValue").prop("checked"),