We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5389757 commit 22cb1cbCopy full SHA for 22cb1cb
Cargo.toml
@@ -1,7 +1,7 @@
1
[package]
2
3
name = "cssparser"
4
-version = "0.3.7"
+version = "0.3.8"
5
authors = [ "Simon Sapin <simon.sapin@exyr.org>" ]
6
7
description = "Rust implementation of CSS Syntax Level 3"
src/parser.rs
@@ -155,6 +155,7 @@ impl Delimiters {
155
fn from_byte(byte: Option<u8>) -> Delimiters {
156
match byte {
157
Some(b';') => Delimiter::Semicolon,
158
+ Some(b'!') => Delimiter::Bang,
159
Some(b',') => Delimiter::Comma,
160
Some(b'{') => Delimiter::CurlyBracketBlock,
161
Some(b'}') => ClosingDelimiter::CloseCurlyBracket,
0 commit comments