tree-sitter / tree-sitter-html

HTML grammar for Tree-sitter
MIT License
136 stars 72 forks source link

Void elements should not allow children #88

Open ObserverOfTime opened 8 months ago

ObserverOfTime commented 8 months ago

See https://developer.mozilla.org/en-US/docs/Glossary/Void_element

Example:

<!DOCTYPE html>
<html lang="en">
<head><title>foo</title></head>
<body><input>bar</input></body>

The parser should produce an error on </input> like the W3C validator does.