-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Currently no folding provided so if we parse website this:
<head>
<title>Here is my title</title>
</head>We will recieve:
[ { "name": "head" }, { "name": "title", "text": "Here is my title" } ]But expecting to recieve something like this:
[ { "name": "head", "child": [ { "name": "title", "text": "Here is my title" } ] } ]So basic task, is to make object folding.