We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4aa623c + 8dbb73e commit 5389757Copy full SHA for 5389757
Cargo.toml
@@ -1,7 +1,7 @@
1
[package]
2
3
name = "cssparser"
4
-version = "0.3.6"
+version = "0.3.7"
5
authors = [ "Simon Sapin <[email protected]>" ]
6
7
description = "Rust implementation of CSS Syntax Level 3"
src/parser.rs
@@ -124,6 +124,8 @@ pub mod Delimiter {
124
pub const CurlyBracketBlock: Delimiters = Delimiters { bits: 1 << 1 };
125
/// The delimiter set with only the `;` semicolon
126
pub const Semicolon: Delimiters = Delimiters { bits: 1 << 2 };
127
+ /// The delimiter set with only the `!` exclamation point
128
+ pub const Bang: Delimiters = Delimiters { bits: 1 << 3 };
129
/// The delimiter set with only the `,` comma
130
pub const Comma: Delimiters = Delimiters { bits: 1 << 4 };
131
}
0 commit comments