The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
{
  "name": "Comment edge-cases",
  "options": {},
  "html": "<!-foo><!-- --- --><!--foo",
  "expected": [
    {
      "event": "processinginstruction",
      "data": [
        "!-foo",
        "!-foo"
      ]
    },
    { "event": "comment",     "data": [ " --- " ] },
    { "event": "commentend",  "data": [] },
    { "event": "comment",     "data": [ "foo" ] },
    { "event": "commentend",  "data": [] }
  ]
}