BEM Parser

A Rust-based parser for the BEM file format, utilizing the Pest parsing library.

Overview

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.

Features

Getting Started

Prerequisites

Ensure you have Rust and Cargo installed:

bash curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Installation

Add bem to your Cargo.toml:

toml [dependencies] bem = "0.1.0"

Usage

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); } ```

Contributing

Feel free to open issues or pull requests if you have suggestions, improvements, or fixes.

License

MIT License. See LICENSE for details.