UNPKG

compound-ex4

Version:

Compound-ex4 - MVC framework for NodeJS (ExpressJs 4 version), fork compoundjs(https://github.com/1602/compound)

67 lines (65 loc) 765 B
{ "name": "Self-closing tags", "options": { "handler": { }, "parser": { } }, "html": "<a href=http://test.com/>Foo</a><hr / >", "expected": [ { "event": "opentagname", "data": [ "a" ] }, { "event": "attribute", "data": [ "href", "http://test.com/" ] }, { "event": "opentag", "data": [ "a", { "href": "http://test.com/" } ] }, { "event": "text", "data": [ "Foo" ] }, { "event": "closetag", "data": [ "a" ] }, { "event": "opentagname", "data": [ "hr" ] }, { "event": "opentag", "data": [ "hr", {} ] }, { "event": "closetag", "data": [ "hr" ] } ] }