Update README.md

This commit is contained in:
sam
2026-01-23 19:10:29 -06:00
parent 61af976a7a
commit 656a673ca9

View File

@@ -120,46 +120,4 @@ class Home extends Shadow {
register(Home)
```
### Rendering Elements:
The basis of rendering is the Shadow, which extends HTMLElement. The Shadow is the equivalent of a React Component.
To create a Shadow, simply:
- Create a class which extends Shadow
- Include a render() function
- Register the shadow as an element
...
```
class File extends Shadow {
render = () => {
p(this.name)
p("asd")
}
}
register(File, "file-el")
```
## Needs Support:
Ternaries within render()
Other statements within render()
Multiple-argument attributes in render()
## Limitations:
While rendering is underway, an element's state can only be accessed from within that element
## Boilerplate:
- ```*html```: Type in an HTML file and select the suggestion to create HTML boilerplate.
- ```*element```: Type in a JS file and select the suggestion to create JS Custom Element boilerplate.
## Functions:
Clone this repository into the top level of the project you are working on, so the HTML can find the "quill.js" functions.
Use backticks with both to get HTML and CSS syntax highlighting.
- ```css() or addStyle()```: Adds a style to a Quill style tag in the head.
- ```html()```: Creates a parsed HTML element (which is not yet in the DOM)
```