Dennis Snell
Dennis Snell
cc: @NeilFraser I'll do my best to oversee continued development and bug triage on the library; it could be helpful if this repo would point folks to one spot so...
I've been trying to get this project to build and I keep running into problems. First, the instructions say to run `yarn setup:tools` but skip mentioning the need to run...
## Description Previously, the hook-name printer was reyling on the parser's pretty printer to generate names, and then post-processing the name to extract string literal values and concatenations. Unfortunately this...
Trac ticket: Core-61072 Token Map Trac ticket: Core-60698 From #5375 takes `WP_Token_Set` for character reference lookup (need to make that a Map to decode properly though…) From #5337 takes the...
## Summary Creates virtual nodes when pushing to and popping from the stack of open elements. It's these nodes that are returned by `next_tag()`, while subclassed methods intercept tag information,...
Trac ticket: Core-60229 🚧👷♂️🏗️ This feature is currently being proposed for the *WordPress 6.6* release cycle, being pushed back from 6.5 to allow for more time to let the design...
Trac ticket: Core-61501. _(was Core-61052)_ Alternative in #6598 Allow for additional custom data attributes in `wp_kses_attr_check()`. In this patch the set of allowable custom data attribute names is expanded to...
Trac ticket: Core-61009 When `wp_kses_split` processes a document it attempts to leave HTML comments relatively alone. It makes minor adjustments, but leaves the comments in the document in its output....
To keep destructuring legible without creating unused bindings I typically add an explanatory comment but running through `prettier` moves the comments to the wrong spots where it ends up obscuring...
```css li + a { color: red; } ``` ```css li > a { color: red; } ```