Kenneth Lim
Kenneth Lim
I wonder if this can be expanded into a wider accessibility checker feature that can form part of the Web Accessibility module of p5.js? Eg. also adding a function that...
Simply filtering out `#text` nodes will not work as `#text` nodes are legitimate child nodes. For example ```xml There are 4 animals here. Goat Leopard Zebra Turtle ``` One would...
@raquelcps For me, `elements` is basically everything. What is being referred to as `elements` here is more usually referred to as `tags` as in HTML/XML tags, although the definition can...
I think the blank `#text` node probably still make sense to exclude, probably something like a regex that see if a `#text` node's content is all whitespace or not, although...
@mattdesl The current idea I have may end up supporting both cases actually, at least for some modules. If #6830 is implemented, there should not be a big difference between...
@nataliefreed No current discussions that I know of is going on though there had been pretty consistent interest in this. I think the lack of progress is mostly due to...
This technically changes the behavior of the property and is a breaking change. I don't think I can accept this solution because of it.
There's no formal process for these as they are often managed separately and have different considerations. For Github Actions, those can most likely be updated to use newer versions of...
@mattdesl Thanks for sharing. The current implementation of `randomSeed()` only accepts a number, I can see hashing can be a good way to enable string to be used as seed...
@davepagurek Just trying this and found a rather significant roadblock. The generated `d.ts` file does not include types for the math module because of the new module syntax encapsulating the...