Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
htmlparser2 / test / Events / 26-not-quite-closed.json
Size: Mime:
{
  "name": "Not quite closed",
  "options": {},
  "html": "<foo /bar></foo bar>",
  "expected": [
    {
      "event": "opentagname",
      "data": [
        "foo"
      ]
    },
    {
      "event": "attribute",
      "data": [
        "bar",
        ""
      ]
    },
    {
      "event": "opentag",
      "data": [
        "foo",
        {
          "bar": ""
        }
      ]
    },
    {
      "event": "closetag",
      "data": [
        "foo"
      ]
    }
  ]
}