We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17d2a1d commit 5d141c8Copy full SHA for 5d141c8
src/tokenizer.rs
@@ -44,9 +44,10 @@ pub enum Token<'a> {
44
/// The value does not include the quotes.
45
QuotedString(CowRcStr<'a>),
46
47
- /// A [`<url-token>`](https://drafts.csswg.org/css-syntax/#url-token-diagram) or `url( <string-token> )` function
+ /// A [`<url-token>`](https://drafts.csswg.org/css-syntax/#url-token-diagram)
48
///
49
- /// The value does not include the `url(` `)` markers or the quotes.
+ /// The value does not include the `url(` `)` markers. Note that `url( <string-token> )` is represented by a
50
+ /// `Function` token.
51
UnquotedUrl(CowRcStr<'a>),
52
53
/// A `<delim-token>`
0 commit comments