Skip to content
This repository was archived by the owner on Jul 30, 2023. It is now read-only.

DotWith/pest-css-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pest-CSS-Parser

crates.io docs.rs

Rust parser for css files using pest.

Usage

let input = r#"
    span {
        display: inline;
    }
"#;
let stylesheet = StyleSheet::parse(input).unwrap();
assert_eq!(stylesheet.rules.len(), 1);

Examples

Task list

  • Write documentation
  • Create a writer

About

No description, website, or topics provided.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages