XPath to CSS in Rust https://crates.io/crates/cssifier
1d428d8838 | ||
---|---|---|
src | ||
.gitignore | ||
Cargo.toml | ||
README.md |
README.md
CSSIFIER_RS
Simple crate to convert XPath selectors to CSS selectors
based on cssify but rewrited in Rust (RiiR F4W).
dependencies:
Usage
The usage is simple:
cssifier("//a/b")
// Some("a b")
cssifier("//a/b[@id='hello']")
// Some(a b#hello)
cssifier("//a/b[contains(text(), 'hello')]")
// Some(a b:contains(hello))
Known issues
[ ] invalid XPath return empty String
Contributors are welcome :).