Valtteri Laitinen
Valtteri Laitinen
Could this plugin get the Node version from the [`.nvmrc` file](https://github.com/nvm-sh/nvm#nvmrc)? This way it would be more handy to update the Node version: we could just run `node -v >...
Browsers should use the `u` flag when matching the input value against HTML pattern attribute. ([Spec](https://html.spec.whatwg.org/multipage/input.html#the-pattern-attribute).) Initial implementations didn’t use the flag, but now at least Chrome, Firefox and Safari...
This is to avoid extra redirects.
I think `home_page_url` is bit verbose and should be called `home_url`. What do you think?
React does not support all the named character references, “entities”, defined in the HTML specification: - Table: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references - JSON: https://html.spec.whatwg.org/entities.json React version: 18.2.0 ## Steps To Reproduce Render the...
This spec doesn’t seem contain an API to parse CSS selectors. I would like to create a function that turns a CSS selector into a HTML element. For example, ```js...
Some browsers ignore the image size (set with HTML attributes or CSS) when rendering broken images (Chrome always and Firefox when a non-empty alt text is provided). Should browsers preserve...
Hey! I need word wrap icon. I would use it in “enable/disable line wrap” button on code boxes of my site. It could look like this: 
Lightning CSS always inserts the nesting selector `&` regardless of the browser support. For example, the following (with a class selector): ```css .top { .sub { --prop: value; } } ```...