Fixed failure of regex to match @imports
This commit is contained in:
parent
45335d7507
commit
76ccff80f9
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ use url::{ParseError, Url};
|
|||
/// Malformed CSS could lead to an invalid URL being present. It is therefor
|
||||
/// recomended that the URL is manually validated.
|
||||
const CSS_URL_REGEX_STR: &str =
|
||||
r###"(?:(?P<import>@import)|(?P<font>src\s*:)\s+)?url\((?P<to_repl>['"]?(?P<url>[^"'\)]+)['"]?)\)"###;
|
||||
r###"(?:(?:(?P<stylesheet>@import)|(?P<font>src\s*:))\s+)?url\((?P<to_repl>['"]?(?P<url>[^"'\)]+)['"]?)\)"###;
|
||||
|
||||
lazy_static! {
|
||||
static ref HAS_PROTOCOL: Regex = Regex::new(r"^[a-z0-9]+:").unwrap();
|
||||
|
|
Loading…
Reference in a new issue