RustGrow
RustGrow
It has panic with 0.6.4 too ``` [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" skyscraper = "0.6.4" reqwest = { version = "0.12.4",...
Thanks for the update. Everything works fine, but it's still more familiar to get attribute values from the xpath expression "//div[@class=\"css-1wtm1ek\"]/div/a/@href" than from .extract_as_element_node() This is a bit confusing. Thank...
What you have done for the community is worthy of admiration and approval. A huge thank you to you. A simple API is just a light and understandable syntactic sugar...
You may be right about different clients, just then you need to add to the documentation how to create a document for processing and a full example of querying and...
This is working code. All of malformed HTML handlers (VoidMismatchedTagHandler, CloseMismatchedTagHandler) has an error again. `Error: MissingLiteralAfterAssignmentSign { tag_name: "img" }` ``` reqwest = { version = "0.12.4", features =...
I tried to run the query with a new version of the crate (skyscraper = "0.7.0-beta.0") and I got the same error message again. `Error: MissingLiteralAfterAssignmentSign { tag_name: "img" }`...
It has problem with skyscraper = "0.7.0-beta.2" too [index.txt](https://github.com/user-attachments/files/16119893/index.txt) ``` [dependencies] skyscraper = "0.7.0-beta.2" reqwest = { version = "0.12.4", features = ["default", "blocking", "cookies", "json", "socks", "gzip"] } tokio...
Can you implement both types with a tag attribute and a body within it? Example on https://tailwindcss.com/docs/installation/play-cdn 2 Try customizing your config ``` tailwind.config = { theme: { extend: {...
It's the same thing ``` fn main() { dioxus_logger::init(Level::INFO).expect("failed to init logger"); info!("starting app"); launch(App); } fn App() -> Element { use_context_provider(|| Signal::new("en".to_string())); let mut lang: Signal = use_context(); ```...
Maybe I'm doing something really wrong. I would be very grateful if you could look at my settings. I am not able to run hotreload with the new version of...