ben-cook / benser

0 stars 0 forks source link

HTML Parsing #3

Open ben-cook opened 1 year ago

ben-cook commented 1 year ago

Currently the HTML parser is about as basic as it can get. Eventually, we want to implement the HTML parser as specified in section 13.2 of the HTML5 standard:

https://html.spec.whatwg.org/multipage/parsing.html

We will not use typical parser generator tools (yacc, bison) or parser combinator tools (nom), but instead write it by hand. For fun.

This will be broken down into smaller tasks if I can figure out how.