| Crates.io | css-parser-rs |
| lib.rs | css-parser-rs |
| version | 0.1.0 |
| created_at | 2024-01-19 05:53:44.581961+00 |
| updated_at | 2024-01-19 05:53:44.581961+00 |
| description | A Rust crate for parsing CSS file. It supports reading CSS file in an event-based fashion. |
| homepage | |
| repository | https://github.com/mdmahikaishar/css-parser-rs |
| max_upload_size | |
| id | 1105010 |
| size | 9,541 |
Css Parser Rs is a Rust crate for parsing CSS file. It supports reading CSS file in an event-based fashion. This allows you to receive events for different selectors, rules and comments during the parsing process.
Add this crate to your Cargo.toml file:
[dependencies]
css-parser-rs = "0.1.0"
use css_parser_rs::Lexer;
use std::fs;
fn main() {
let content = fs::read_to_string("./examples/styles.css").expect("ERROR: couldn't read file.");
for event in Lexer::new(&content).parse() {
println!("{event:?}");
}
}
StartSelector(NAMES): Triggered when an CSS selector starts.
EndSelector(NAMES): Triggered when an CSS selector ends.
Rule(KEY, VALUE),: Triggered when an CSS rule is encountered.
Comment(VALUE): Triggered when a comment is encountered.
Contributions are welcome! I would like you to contribute in this project.
This project is in its early stages, and there are many missing features that need implementation. Check the Issues section for a list of features, enhancements, and bug fixes that are planned.
This project is licensed under the MIT License - see the LICENSE file for details.