other-mickk
other-mickk
Ensure that the `:nth-child`/`:nth-of-type` selectors find siblings through the `Core.:(===)` operator. This is the same behaviour as `nextSibling` and `prevSibling`. Closes #21. --- Passes tests locally. I would appreciate eyeballs...
I have managed to reduce the situation to the following: ```julia using Gumbo using Cascadia tree = parsehtml(""" """) eachmatch(sel"a:nth-child(1)", tree.root) ``` This gives me the following result: ``` 2-element...
Split out some of the `#random()` functionality into a `#random_among(choices)` function, to switch to a colorscheme from a caller-passed argument list. In a perfect-world we'd have even better separation of...