Skip to content

Handling HTML: Extend vs. Re Create?

Alex LaFroscia edited this page Feb 26, 2021 · 1 revision

One early decision that had to be made was how to handle parsing HTML. We could either:

  1. Try to extend or compose in the HTML parser
  2. Just start over from scratch

WIP Points

  • Looked into embedded template languages
  • Looked into PHP
  • Ultimately, we need to parse the Handlebars elements to handle yielding, so we might as well just parse everything as well
    • Also gives us the ability to differentiate between HTML elements and Glimmer components, if we want to
Clone this wiki locally