enlive
enlive copied to clipboard
query html document with css selectors in elisp
With emacs versions later than 27.1 the `Package cl is deprecated`. There are some small changes to use `cl-lib` rather than `cl` added in https://github.com/zweifisch/enlive/pull/5 specifically - prefixing `loop` to...
A few small changes for cl -> cl-lib compatibility & formatting.
Could you add docstrings for library functions? This would be useful to quickly check out the documentation in emacs using describe-function. Thanks for writing this library!
Hi, is there a way to do an OR query with enlive? Something like: `(enlive-query-all *my-parsed-html* [.type1 | .type2]) ` In the example below, I would be looking to get...