Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ <h2>Parsing options</h2>
<input type="checkbox" id="ignoreAttributes" checked="true"> Ignore attributes <br>
<input type="checkbox" id="attributesGroupName"> Group all the attributes <br>
<input type ="checkbox" id="allowBooleanAttributes"> Allow Boolean Attributes <br>
<input type="checkbox" id="ignoreDeclaration" checked="true"> Ignore XML declaration <br>
<input type="checkbox" id="parseAttributeValue"> Parse attribute's value to float / integer / boolean.<br>
<input type="checkbox" id="parseNodeValue" checked="true"> Parse text-node's value to float / integer / boolean.<br>
<input type="checkbox" id="removeNSPrefix" checked="true"> Remove namespace string from tag and attribute names. <br>
Expand Down Expand Up @@ -203,6 +204,7 @@ <h2>Note!!</h2>
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"),
Expand Down