Last active
July 24, 2017 23:56
-
-
Save northamerican/6f3ac39c9424b5b211db to your computer and use it in GitHub Desktop.
minimalist html in json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"table": [{ | |
"class": ["class-for-table"] | |
}, { | |
"a": [{ | |
"rel": "something", | |
"href": "a-url-here" | |
}, [ | |
"this is a text node" | |
]] | |
}, { | |
"caption": [ | |
"this is a text node" | |
] | |
}, { | |
"input": [{ | |
"type": "checkbox", | |
"disabled": "disabled" | |
}] | |
}, { | |
"this is a comment": null | |
}] | |
}] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"table": [{ | |
"class": ["class-for-table"] | |
}, { | |
"a": [{ | |
"rel": "something", | |
"href": "a-url-here" | |
}, { | |
"": "this is a text node" | |
}] | |
}, { | |
"caption": [{ | |
"": "this is a text node" | |
}] | |
}, { | |
"input": [{ | |
"type": "checkbox", | |
"disabled": "disabled" | |
}] | |
}, { | |
"!--": "this is a comment" | |
}] | |
}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
consider this an attempt to devise a more human processable and nearly writable version of
https://github.com/andrejewski/himalaya
and
https://developer.mozilla.org/en-US/docs/JXON