A Rust-based parser for the BEM file format, utilizing the Pest parsing library.
This parser provides functionality to parse BEM (Block Element Modifier) notations, primarily used in CSS methodologies for naming classes in HTML. With this parser, you can interpret and work with BEM notations programmatically in Rust.
Ensure you have Rust and Cargo installed:
bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Add bem
to your Cargo.toml
:
toml
[dependencies]
bem = "0.1.0"
Here's a simple example:
```rust use bem::BEMParser;
let bemcontent = "media-player(dark|light)\nbutton(fast-forward|rewind)\ntimeline"; let parsed = BEMParser::parse(&bemcontent).expect("Failed to parse BEM content");
// Process the parsed content... for pair in parsed { println!("{:?}", pair); } ```
Feel free to open issues or pull requests if you have suggestions, improvements, or fixes.
MIT License. See LICENSE for details.